• 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.

Fix for wearing pants & overall

Custom Title Activated
Loyal Member
Joined
Apr 29, 2008
Messages
1,297
Reaction score
509
It's a super easy fix.

src\server\MapleInventoryManipulator.java

NOTE : If your isOverall function is in MapleItemInformationProvider, it's most probably already working the way it should be.

Find

Code:
private static final boolean isOverall(int itemId) {
        return itemId / 10000 == 1050000;
    }

Change it to

Code:
private static final boolean isOverall(int itemId) {
        return itemId / 10000 == 105;
    }
 
Elite Diviner
Joined
Jul 13, 2008
Messages
419
Reaction score
217
Everyone should have fixed that by now, I released it like a half year ago already (on WOG or RaGEZONE I think).
 
Custom Title Activated
Loyal Member
Joined
Apr 29, 2008
Messages
1,297
Reaction score
509
Lol. No idea then, didn't bother searching and it wasn't fixed in moopledev :)

Sorry :O
 
Junior Spellweaver
Joined
Sep 19, 2009
Messages
111
Reaction score
19
...........................
 
Last edited:
Back
Top