Advertisement
existence_dev92

Untitled

Oct 12th, 2020
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. prontera,123,84,5 script Race to Job 70 4_F_KAFRA5,{
  2. .@eac = eaclass();
  3. if (!(.@eac & EAJL_UPPER))
  4. {
  5. npctalk "You need to be Rebirth Advanced Classes to claim the reward.";
  6. end;
  7. }
  8. if (BaseLevel < 99 & JobLevel < 70)
  9. {
  10. npctalk "Sorry, Only Level 99/70 can claim the reward!";
  11. end;
  12. }
  13. if ($ItemGive == 101)
  14. {
  15. npctalk "Sorry, all rewards has been taken!";
  16. end;
  17. }
  18. if (getreward)
  19. {
  20. npctalk "Sorry, Nothing for you!";
  21. end;
  22. }
  23. announce "Congratulations! "+strcharinfo(0)+" has claimed his reward for Race to Job Level 70 Event", bc_all;
  24. getitem 27643, 1;
  25. ++$ItemGive;
  26. getreward = 1;
  27. sleep 2000;
  28. announce "There are "+(100 - $ItemGive)+" rewards left to give!", bc_all;
  29. end;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement