- Joined
- Jun 24, 2008
- Messages
- 63
- Reaction score
- 7
This was a request by darkdayz its very simple.
First find in MapleCharacter.java
Change it to
There, save and compile and you no longer get sp after you've reborn.
*note: This was made for airfl0ws real reborn.
First find in MapleCharacter.java
PHP:
if (job != MapleJob.BEGINNER) {
remainingSp += 3;
statup.add(new Pair<MapleStat, Integer>(MapleStat.AVAILABLESP, Integer.valueOf(remainingSp)));
}
Change it to
PHP:
if ((job != MapleJob.BEGINNER) && (getReborns() < 1)) {
remainingSp += 3;
statup.add(new Pair<MapleStat, Integer>(MapleStat.AVAILABLESP, Integer.valueOf(remainingSp)));
}
There, save and compile and you no longer get sp after you've reborn.
*note: This was made for airfl0ws real reborn.