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!

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