בקובץ MapleCharacter חפשו את הפונקציה gainExp והחליפו אותה בזה:
קרדיט לVIRUS
קוד PHP:
קוד PHP:
public void gainExp(int gainboolean showboolean inChatboolean white) {
        if (
getLevel() < 200) { // lv200 is max and has 0 exp required to level
            
int newexp this.exp.addAndGet(gain);
            
updateSingleStat(MapleStat.EXPnewexp);
        }
        if (
show) { // still show the expgain even if it's not there
            
client.getSession().write(MaplePacketCreator.getShowExpGain(gaininChatwhite));
        }
                if (
this.getExp() < 0) {
                        
this.setExp(0);
                }
        if (
level 200 && exp.get() >= ExpTable.getExpNeededForLevel(level 1)) {
            
levelUp();
        }
    } 
חפשו
קוד PHP:
קוד PHP:
    public int getExp() {
        return 
exp.get();
    } 
הוסיפו מתחת:
קוד PHP:
public void setExp(int amount) {
exp.set(amount);
}
תהנו