- Joined
- Jul 14, 2008
- Messages
- 130
- Reaction score
- 2
Ok, this is auto meso pickup. it picks up the mesos for u when u kill a monster and it was supposed to drop mesos.
first, go to line 328 of MapleMap.java or FIND
the code around it should look like this
comment out spawnMesoDrop()
and add
finished result looks like...(public void run)
and thats all XD
Code:
MapleMap.java
first, go to line 328 of MapleMap.java or FIND
Code:
spawnMesoDrop(meso * mesoRate, meso, dropPos, dropMonster, dropChar, isBoss);
the code around it should look like this
Code:
TimerManager.getInstance().schedule(new Runnable() {
public void run() {
spawnMesoDrop(meso * mesoRate, meso, dropPos, dropMonster, dropChar, isBoss);
}
}, monster.getAnimationTime("die1"));
comment out spawnMesoDrop()
Code:
//spawnMesoDrop(meso * mesoRate, meso, dropPos, dropMonster, dropChar, isBoss);
and add
Code:
dropChar.gainMeso(meso * mesoRate, true, true);
finished result looks like...(public void run)
Code:
public void run() {
//spawnMesoDrop(meso * mesoRate, meso, dropPos, dropMonster, dropChar, isBoss);
dropChar.gainMeso(meso * mesoRate, true, true);
}
}
and thats all XD
Last edited: