OnInit:
setarray .reward,611; //reward here
.statRestriction = 100; // 100 stat and above
set .winner,0;
set .event_start,0;
bindatcmd "start",strnpcinfo(0)+"::OnGMStart";
disablenpc "Event Reward";
end;
}
prontera,146,186,3 script Warper 67,{
if ( BaseLevel > 10 || Class != 0 ) {
mes "Only Lv 10 Novice can enter.";
close;
}
if (readparam(bStr) >= .statRestriction || readparam(bAgi) >= .statRestriction || readparam(bVit) >= .statRestriction || readparam(bInt) >= .statRestriction || readparam(bDex) >= .statRestriction || readparam(bLuk) >= .statRestriction) {
mes "Only Stats 99 Below can enter.";
mes "Make sure all your stats are below 100";
close;
}
else {
getinventorylist;
if ( @inventorylist_amount ) {
mes "You store all your items first.";
close2;
@inventorylist_amount = false;
end;
}
sc_end SC_ALL;
warp "quiz_01",42,369;
}
}
end;