Advertisement
akbare

99 aura reward

Sep 11th, 2015
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. - script max_lv 99,{
  2.  
  3. // Configuration
  4. OnInit:
  5. .max_base = 99;
  6. .max_job = 50;
  7. .item_id = 7825;
  8. .amount = 1;
  9. end;
  10.  
  11. // Script
  12. OnPCBaseLvUpEvent:
  13. OnPCJobLvUpEvent:
  14. // Determine if Base Level and Job Level are max
  15. if (BaseLevel == .max_base && JobLevel == .max_job) {
  16. // Receive reward
  17. getitem .item_id, .amount;
  18.  
  19. // Display confirmation message
  20. message strcharinfo(0), "Congratulations! You have received "+ .amount +" "+ getitemname(.item_id) +" for reaching the max level!";
  21. }
  22.  
  23. end;
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement