Guest User

Untitled

a guest
Oct 20th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. npchandler.java find getAttackEmote
  2.  
  3. find a case and under it add:
  4.  
  5. case 10890:
  6. return 2661;
  7.  
  8. actionhandler.java replace 7251 with
  9.  
  10. case 7251:
  11. c.getPA().startTeleport(3048, 4997, 1, "modern");
  12. c.sendMessage("Fight your Way To Earn Points");
  13. break;
  14.  
  15. spawn-config.cfg
  16.  
  17. //tiers
  18. spawn = 10890 3036 4998 0 1 30 275 300 Forgotten Warrior
  19. spawn = 10890 3036 5000 0 1 30 275 300 Forgotten Warrior
  20. spawn = 10890 3034 5001 0 1 30 275 300 Forgotten Warrior
  21. spawn = 10890 3032 5001 0 1 30 275 300 Forgotten Warrior
  22. spawn = 10890 3030 5001 0 1 30 275 300 Forgotten Warrior
  23. spawn = 10890 3029 4999 0 1 30 275 300 Forgotten Warrior
  24. spawn = 10890 3028 4997 0 1 30 275 300 Forgotten Warrior
  25. spawn = 10890 3026 4997 0 1 30 275 300 Forgotten Warrior
  26. spawn = 10890 3027 5000 0 1 30 275 300 Forgotten Warrior
  27. spawn = 10890 3039 4999 0 1 30 275 300 Forgotten Warrior
  28.  
  29. npchandler.java find if (npcs[i].npcType == 912 || npcs[i].npcType == 913
  30. || npcs[i].npcType == 914) {
  31. c.mbPoints += 1;
  32. c.sendMessage("You have been rewarded with 1 Mage Arena Point for killing this NPC.");
  33. }
  34. under that add :
  35.  
  36. if (npcs[i].npcType == 10890) {
  37. c.randomPoints += 5;
  38. c.sendMessage("You have been rewarded with Points for killing this Npc");
  39. }
  40.  
  41. autospawn.cfg
  42.  
  43. //tiers
  44. spawn = 10890 3243 9373 0 1 30 275 300
  45. spawn = 10890 3246 9373 0 1 30 275 300
  46. spawn = 10890 3246 9370 0 1 30 275 300
  47. spawn = 10890 3245 9368 0 1 30 275 300
  48. spawn = 10890 3243 9367 0 1 30 275 300
  49. spawn = 10890 3245 9367 0 1 30 275 300
  50. spawn = 10890 3247 9366 0 1 30 275 300
  51. spawn = 10890 3245 9364 0 1 30 275 300
  52. spawn = 10890 3246 9361 0 1 30 275 300
  53. spawn = 10890 3245 9359 0 1 30 275 300
Add Comment
Please, Sign In to add comment