First off all, use this code from arco:

Okay now find in character.cs:
Code:
public void RebornCharacter(byte ToJob)
Code:
Level = 15;
Code:
LastLevel = Level; HaveLL = 0;
Find:
Code:
public bool Ghost = false;
Code:
public byte LastLevel; public byte HaveLL;
Code:
C.LotteryUsed = BR.ReadByte();
Code:
C.LastLevel = BR.ReadByte(); C.HaveLL = BR.ReadByte();
Code:
BW.Write(C.LotteryUsed);
Code:
BW.Write(C.LastLevel);//LastLevel BW.Write(C.HaveLL);//LastLevelCheck
Code:
public void IncreaseExp(uint Amount, bool isTeamExp)
Code:
if (CurLevel > Level)
Level = CurLevel;
Experience = CurExp;
Code:
if (Reborns > 0 && Level > 129 && HaveLL == 0) {
Level = LastLevel; HaveLL = 1; }
Goodluck






