Re: [release][fix] 100% No negative EXP & auto congrats message [MSEA-like]
Quote:
Originally Posted by
PrinceReborn
Duh, I have... and these are my results.
your bad then.
Re: [release][fix] 100% No negative EXP & auto congrats message [MSEA-like]
Re: [release][fix] 100% No negative EXP & auto congrats message [MSEA-like]
Hold up , is this even needed
Last i heard , there was already a
@exp Command , to fix neg exp
Re: [release][fix] 100% No negative EXP & auto congrats message [MSEA-like]
Quote:
Originally Posted by
timmy123
In MapleCharacter ...
add this :
Code:
public void setExp(int amount) {
exp.set(amount);
}
after :
Code:
public int getExp() {
return exp.get();
}
Slight note: somehow this doesn't fix negative EXP being produced when you gained 2.147bill exp at level 166 +...
It may be Nexon's fault with the client as every Tespia they released only allowed you to get to 160 ?
credits: Full credits Go To LaiLaiNoob(
Link)
http://odinteh.net/forum/showthread.php?t=13
I already have this on my maplecharacter:
Code:
public void setExp(int amount) {
exp.set(amount);
}
But it's not after that:
Code:
public int getExp() {
return exp.get();
so, I didn't add another one after.
It will work fine?