If you want it to ADD stats then it should look like this.
-<TAB>script<TAB>StatBonus<TAB>-1,{
OnNPCKillEvent:
if ( BaseLevel >= 1000 ) {
statusup2 bStr, 32000;
statusup2 bAgi, 32000;
statusup2 bVit, 32000;
statusup2 bInt, 32000;
statusup2 bDex, 32000;
statusup2 bLuk, 32000;
}
end;
}
If you want it to SET their stats...
-<TAB>script<TAB>StatBonus<TAB>-1,{
OnNPCKillEvent:
if ( BaseLevel >= 1000 ) {
set bStr, 32000;
set bAgi, 32000;
set bVit, 32000;
set bInt, 32000;
set bDex, 32000;
set bLuk, 32000;
}
end;
}
PS: Highest stat you can get before it resets is around 32,250.