Advertisement
Guest User

Rescue Survivor Skills

a guest
Jun 28th, 2016
1,590
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. RevealSelf:
  2. Cooldown: 10000
  3. Conditions:
  4. - playerwithin 5
  5. Skills:
  6. - randomskill
  7. {
  8. skills=
  9. RewardMoneySurvivor,
  10. EnemySurvivor,
  11. RewardItemsSurvivor
  12. }
  13.  
  14. ### Money Giving Survivor ###
  15. RewardMoneySurvivor:
  16. Cooldown: 0
  17. Skills:
  18. - sendtitle{title="";subtitle="&aThank you for saving me!";d=60} @NearestPlayer
  19. - skill{KilledSurvivor} @NearestPlayer ~onDeath
  20. - delay 60
  21. - sendtitle{title="";subtitle="&aHere is some money";d=60} @NearestPlayer
  22. - command{c="eco give <target.name> 200"} @NearestPlayer
  23. - delay 60
  24. - effect:particlesphere{particle=cloud;amount=70;radius=1;yOffset=0.5} @origin
  25. - remove @Self
  26.  
  27. ### Item Giving Survior ###
  28. RewardItemsSurvivor:
  29. Cooldown: 0
  30. Skills:
  31. - sendtitle{title="";subtitle="&aThank you for saving me!";d=60} @NearestPlayer
  32. - skill{s=JumpHappy} @Self
  33. - delay 60
  34. - sendtitle{title="";subtitle="&aHere is a Diamond!";d=60} @NearestPlayer
  35. - command{c="give <target.name> DIAMOND 1"} @NearestPlayer
  36. - delay 60
  37. - effect:particlesphere{particle=cloud;amount=70;radius=1;yOffset=0.5} @origin
  38. - remove @Self
  39.  
  40. ### Enemy Survivor ###
  41. EnemySurvivor:
  42. Cooldown: 0
  43. Skills:
  44. - delay 60
  45. - sendtitle{title="";subtitle="&cHAHA YOU FELL FOR IT!";d=30} @NearestPlayer
  46. - delay 40
  47. - sendtitle{title="";subtitle="&cGET HIM BOYS!";d=30} @NearestPlayer
  48. - skill{s=SummonEnemies}
  49. - delay 120
  50. - effect:particlesphere{particle=cloud;amount=70;radius=1;yOffset=0.5} @Self
  51. - remove @Self
  52.  
  53. SummonEnemies:
  54. Cooldown: 0
  55. Skills:
  56. - delay 20
  57. - summon{type=SupriseEnemy;amount=1;radius=3} @Self
  58. - delay 20
  59. - summon{type=SupriseEnemy;amount=1;radius=3} @Self
  60. - delay 20
  61. - summon{type=SupriseEnemy;amount=1;radius=3} @Self
  62. - remove @Self
  63.  
  64. EnemySpawnAnim:
  65. Skills:
  66. - effect:particlesphere{particle=cloud;amount=70;radius=1;yOffset=0.5} @Self
  67.  
  68. CryForHelp:
  69. Conditions:
  70. - playernotwithin 10
  71. Skills:
  72. - message{m="&a[&2Survivor&a] &fHelp me! Im at &b<mob.l.x>&f,&b<mob.l.y>&f,&b<mob.l.z> &fLess than 50 blocks away!"} @PlayersInRadius{r=50}
  73.  
  74. JumpHappy:
  75. Skills:
  76. - jump{velocity=0.5}
  77. - delay 40
  78. - jump{velocity=0.5}
  79. - delay 40
  80. - jump{velocity=0.5}
  81.  
  82. KilledSurvivor:
  83. Skills:
  84. - message{m="&cYou killed a &eSurvivor &c and lost &f$100"} @Target
  85. - command{c="eco take <target.name> 100"} @Target
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement