- Joined
- Jul 13, 2008
- Messages
- 419
- Reaction score
- 217
Super Meso Magnet?
What is Super Meso Magnet? Well, it's a Meso Magnet which is different from the Global MapleStory Meso Magnet. In my own oppinion it's better and my users also like it more than the standard Meso Magnet.
What I need?
A pet and a Meso Magnet from the Cash Shop or from anywhere else... (You don't have to equip your pet with Meso Magnet but you can, both will work!)
What it does?
If you are equipped with a pet and a Meso Magnet the mobs don't drop the mesos, you directly get them. All I did was editing the drop meso part so that it only drops mesos if you are not using pet + meso magnet.
Btw, thanks to 0aix2 for releasing the auto pick up thing, I already had it but what ever...
How to add it?
That's sooo easy...
Open MapleMap.java and replace this line...
...with these lines...
...save, compile, done!
NOTE: If you used the second version of my Magic Scales fix which also disables Meso Magnet, then go into BuyCSItemHandler.java and replace this line...
...with this line...
...save, compile, done!
(You only need to do this if you used the second version of my Magic Scales fix, I recommend to use it!)
http://forum.ragezone.com/showthread.php?t=442847
This is my first good release, I think it's good, I hope you like it!
Credits to me for this and Leifde for his awesome pets patch!
What is Super Meso Magnet? Well, it's a Meso Magnet which is different from the Global MapleStory Meso Magnet. In my own oppinion it's better and my users also like it more than the standard Meso Magnet.
What I need?
A pet and a Meso Magnet from the Cash Shop or from anywhere else... (You don't have to equip your pet with Meso Magnet but you can, both will work!)
What it does?
If you are equipped with a pet and a Meso Magnet the mobs don't drop the mesos, you directly get them. All I did was editing the drop meso part so that it only drops mesos if you are not using pet + meso magnet.
Btw, thanks to 0aix2 for releasing the auto pick up thing, I already had it but what ever...
How to add it?
That's sooo easy...
Open MapleMap.java and replace this line...
Code:
spawnMesoDrop(meso * mesoRate, meso, dropPos, dropMonster, dropChar, isBoss);
Code:
if (dropChar.getPet() != null && dropChar.haveItem(1812000, 1, true, isBoss)) {
dropChar.gainMeso(meso * mesoRate, true, true);
} else {
spawnMesoDrop(meso * mesoRate, meso, dropPos, dropMonster, dropChar, isBoss);
}
NOTE: If you used the second version of my Magic Scales fix which also disables Meso Magnet, then go into BuyCSItemHandler.java and replace this line...
Code:
} else if (item.getId() >= 1812000 && item.getId() <= 1812006) {
Code:
} else if (item.getId() >= 1812001 && item.getId() <= 1812006) {
(You only need to do this if you used the second version of my Magic Scales fix, I recommend to use it!)
http://forum.ragezone.com/showthread.php?t=442847
This is my first good release, I think it's good, I hope you like it!

Credits to me for this and Leifde for his awesome pets patch!