Just make an NPC to do this:
- script autolvlup -1,{OnPCLoginEvent: if ( (BaseLevel == JobLevel == 1) && !newReward) { // Assume new character set newReward,1; atcommand "@lvup 9"; // 1 + 9 = 10; } end;}
P.S.: Right now I'm unsure if this piece will work:
BaseLevel == JobLevel == 1
If it doesn't, please change it to:
BaseLevel == 1 && JobLevel == 1
But remember to keep that inside the parentheses.