• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

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