Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2015
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.52 KB | None | 0 0
  1. // Winterfox - Cash Rewards V 1.0
  2. - script cash_rewards -1,{
  3. OnInit:
  4. // To add manual mobs besides MVPs.
  5. .@mobIdListStr$ = "";
  6.  
  7. // To filter certain mobs.
  8. .@mobFilterListStr$ = "";
  9.  
  10. // Set the points you get for slaying an mob defined in the rewardMobsIds array.
  11. .mobRewardPoints = 1;
  12.  
  13. // Set the points you get for slaying an opponent in pvp
  14. .pvpRewardPoints = 1;
  15.  
  16. // Explode the mob id list.
  17. explode(.@mobIdList$, .@mobIdListStr$, ", ");
  18.  
  19. // Loop trough the id list.
  20. for(.@i = 0; .@i < getarraysize(.@mobIdList$); .@i++) {
  21. // Rebuild add the id to the mob ids.
  22. .@mobIds[.@i] = atoi(.@mobIdList$[.@i]);
  23. }
  24.  
  25. // Explode the mob filter list
  26. explode(.@mobFilterList$,.@mobFilterListStr$,", ");
  27.  
  28. // Loop trough the filter list.
  29. for(.@i = 0; .@i < getarraysize(.@mobFilterList$); .@i++) {
  30. // Rebuild it to another array with id as key.
  31. .@mobFilter[atoi(.@mobFilterList$[.@i])] = 1;
  32. }
  33.  
  34. // Loop trough the mob ids.
  35. for(.@i = 0; .@i < getarraysize(.@mobIds); .@i++) {
  36. // If mob id is not in the filter.
  37. if(!.@mobFilter[.@mobIds[.@i]]) {
  38. // Add it to the rewards.
  39. .rewardMobIds[.@mobIds[.@i]] = 1;
  40. }
  41. }
  42.  
  43. // Search all MVPs based on if a mob gives MVP Exp.
  44. .@db = query_sql("SELECT ID FROM `mob_db` WHERE `MEXP` > 0", .@mvpIds);
  45. // Loop trough all MVPs
  46. for(.@i = 0; .@i < getarraysize(.@mvpIds); .@i++) {
  47. // If the MVP is not in the filter.
  48. if(!.@mobFilter[.@mvpIds[.@i]]) {
  49. // Add it to the rewards.
  50. .rewardMobIds[.@mvpIds[.@i]] = 1;
  51. }
  52. }
  53. end;
  54. OnNPCKillEvent:
  55. // If killed mob is a monster that gives a reward.
  56. if(.rewardMobIds[killedrid]) {
  57. // Add Cash Point reward.
  58. #CASHPOINTS += .mobRewardPoints;
  59.  
  60. // Show Cash Point gain to the player.
  61. dispbottom "You now have " + #CASHPOINTS + " Cash Point" + ((#CASHPOINTS > 1) ? "s" : "") + ".";
  62.  
  63. // Globally announce the kill.
  64. announce strcharinfo(PC_NAME) + " killed " + strmobinfo(1, killedrid) + " and earned "+ .mobRewardPoints +" Cash Point" + ((.mobRewardPoints > 1) ? "s" : "") + ".", bc_all;
  65. }
  66. end;
  67. OnPCKillEvent:
  68. // Add Cash Point reward.
  69. #CASHPOINTS += .pvpRewardPoints;
  70.  
  71. // Show Cash Point gain to the player.
  72. dispbottom "You now have " + #CASHPOINTS + " Cash Point" + ((#CASHPOINTS > 1)? "s":"") + ".";
  73.  
  74. // Announce the kill on the map.
  75. announce strcharinfo(PC_NAME) + " killed " + rid2name(killedrid) + " and earned " + .pvpRewardPoints +" Cash Point" + ((.pvpRewardPoints > 1)? "s" : "") + ".", bc_map;
  76. end;
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement