i think you can try something like this.
prontera,155,181,5 script RebirthNPC 4_F_KAFRA1,{
doevent "rebirth_main::OnTalk";
}
- script rebirth_main -1,{
OnTalk:
if ( BaseLevel < 175 || JobLevel < 60 ) {
mes "You need to be level 175/60.";
}
else {
jobchange Job_Novice;
resetlvl 1;
REBIRTH_COUNT++;
}
close;
OnPCStatCalcEvent:
if ( REBIRTH_COUNT ) {
bonus2 bExpAddRace, RC_All, ( REBIRTH_COUNT * -2 );
}
end;
}