Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Unwanted monster drops v117

Newbie Spellweaver
Joined
Nov 21, 2011
Messages
26
Reaction score
0
(not to sure if this is the right section to post this or not)

I was wondering if anyone could help me remove unwanted drops from monsters....

I know its not from the MySQL because I've searched for the item in the database xD
the items are things like the Christmas tree decoration or equips like the elemental wands/staffs....

I've seen on another post that its something to do with MapleMonsterInformationProvider -> addExtra()

but I'm not to sure what to do with it o .o I've tried removing it but the monsters still drop things...
 
Newbie Spellweaver
Joined
Aug 1, 2012
Messages
55
Reaction score
2
(not to sure if this is the right section to post this or not)

I was wondering if anyone could help me remove unwanted drops from monsters....

I know its not from the MySQL because I've searched for the item in the database xD
the items are things like the Christmas tree decoration or equips like the elemental wands/staffs....

I've seen on another post that its something to do with MapleMonsterInformationProvider -> addExtra()

but I'm not to sure what to do with it o .o I've tried removing it but the monsters still drop things...


Honestly,

Just use a different source for your server.
 
Upvote 0
Newbie Spellweaver
Joined
Aug 29, 2011
Messages
10
Reaction score
1
Open Start.java
Edit:
Code:
MapleMonsterInformationProvider.getInstance().addExtra();
to
Code:
//MapleMonsterInformationProvider.getInstance().addExtra();

:)
 
Upvote 0
Newbie Spellweaver
Joined
Nov 21, 2011
Messages
26
Reaction score
0
Open Start.java
Edit:
Code:
MapleMonsterInformationProvider.getInstance().addExtra();
to
Code:
//MapleMonsterInformationProvider.getInstance().addExtra();

:)

Just tried it but the things still drop ;'(

but thanks for trying to help xD
 
Upvote 0
Supreme Arcanarch
Joined
Apr 1, 2012
Messages
946
Reaction score
329
These items load from old monster book data. You need to disable their loading.
 
Upvote 0
Skilled Illusionist
Joined
Jul 16, 2010
Messages
318
Reaction score
116
sorry for noobish question but how? ;3

<i saw you were the one who helped the other guy> ;D
That drop data is read from String.wz/MonsterBook.img, if I'm not mistaken. Find where it's loaded, comment it out or null it (former being preferable).
 
Last edited:
Upvote 0
Back
Top