Hello scriptwriter can anyone help on this script,
I want to repeat the race 99/70 event but I want only new character will participate in that event.
The old character that not yet reach 99/70 max level will not allowed to join on the events.
Here is the script. please anyone guide me or edit this script to work on my explanation.
prontera,140,178,5 script Race-To-99 100,{
if (BaseLevel < 99) {
npctalk "Sorry, Only Lvl 99 can claim the reward!";
end;
}
if (JobLevel < 70) {
npctalk "Sorry, Only Job Lvl 70 can claim the reward!";
end;
}
if ($ItemGive == 100) {
npctalk "Sorry, all rewards has been taken!";
end;
}
if (getreward) {
npctalk "Sorry, Nothing for you!";
end;
}
announce "Congratulations! "+strcharinfo(0)+" has claimed his reward for Race to 99 Event", bc_all;
getitem 501, 100;
++$ItemGive;
getreward = 1;
sleep 2000;
announce "There are "+(100 - $ItemGive)+" rewards left to give!", bc_all;
end;
}