Advertisement
Guest User

a

a guest
May 21st, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.76 KB | None | 0 0
  1. command /ultrahelp:
  2. permission: ultrahelp
  3. trigger:
  4. send ""
  5. send ""
  6. send "&6/Wand &eGives you the &lULTRA WAND"
  7. send "&6/Tnton &eenables tnt in the ultra wand"
  8. send "&6/Tntoff &edisables tnt in the ultra wand"
  9. send "&6/Fireballon &eenables fireball in the ultra wand"
  10. send "&6/Fireballoff &edisables fireball in the ultra wand"
  11. send "&6/Smiteon &eenables smite in the ultra wand"
  12. send "&6/Smiteoff &edisables smite in the ultra wand"
  13. send "&6/Teleporton &eenables telporting in the ultra wand"
  14. send "&6/Teleportoff &edisables teleporting in the ultra wand"
  15. send ""
  16. send ""
  17.  
  18.  
  19. command /wand:
  20. permission: wand
  21. trigger:
  22. give player 1 blaze rod of protection 1 named "&e&lULTRA WAND"
  23.  
  24. on leftclick holding a blaze rod:
  25. if player has permission "magic.wands":
  26. player is holding item named "&e&lULTRA WAND":
  27. if {tnt.gun} is true:
  28. shoot a primed tnt from player at speed 2.5
  29.  
  30. else:
  31. cancel event
  32. if {fireball} is true:
  33. shoot an fireball from player at speed 1.5
  34. else:
  35. cancel event
  36. if {smite} is true:
  37. strike lightning at targeted block
  38. else:
  39. cancel event
  40. if {tp} is true:
  41. teleport player to targeted block
  42. else:
  43. cancel event
  44. if {l} is true:
  45. loop all entities in radius 20 around player:
  46. push loop-entity upwards at speed 5
  47. create fake explosion at loop-entity
  48. loop 5 times:
  49. push player downwards at speed 5
  50.  
  51. command /tnton:
  52. permission: tnton
  53. trigger:
  54. if {tnt.gun} is false:
  55. set {tnt.gun} to true
  56. send "&e&LULTRA WAND &8- &6Tnt gun has been &aenabled&6!"
  57. else:
  58. if {tnt.gun} is true:
  59. send "&cTnt is already enabled!"
  60.  
  61. command /tntoff:
  62. permission: tntoff
  63. trigger:
  64. if {tnt.gun} is true:
  65. set {tnt.gun} to false
  66. send "&e&LULTRA WAND &8- &6Tnt gun has been &cdisabled&6!"
  67. else:
  68. if {tnt.gun} is false:
  69. send "&cTnt is already disabled!"
  70.  
  71. command /fireballon:
  72. permission: fireballon
  73. trigger:
  74. if {fireball} is false:
  75. set {fireball} to true
  76. send "&e&lULTRA WAND &8- &6Fireball has been &aenabled&6!"
  77. else:
  78. if {fireball} is true:
  79. send "&cFireball is already enabled!"
  80.  
  81. command /fireballoff:
  82. permission: fireballoff
  83. trigger:
  84. if {fireball} is true:
  85. set {fireball} to false
  86. send "&e&lULTRA WAND &8- &6Fireball has been &cdisabled&6!"
  87. else:
  88. if {fireball} is false:
  89. send "&cFireball is already disabled!"
  90.  
  91. command /smiteon:
  92. permission: smiteon
  93. trigger:
  94. if {smite} is false:
  95. set {smite} to true
  96. send "&e&lULTA WAND &8- &6Smite has been &aenabled&6!"
  97. else:
  98. if {smite} is true:
  99. send "&cSmite is already enabled"
  100. command /smiteoff:
  101. permission: smiteoff
  102. trigger:
  103. if {smite} is true:
  104. set {smite} to false
  105. send "&e&lULTRA WAND &8- &6Smite has been &cdisabled&6!"
  106. else:
  107. if {smite} is false:
  108. send "&cSmite is already disabled!"
  109.  
  110. command /teleporton:
  111. permission: tpon
  112. trigger:
  113. if {tp} is false:
  114. set {tp} to true
  115. send "&e&lULTRA WAND &8- &6Teleporting has been &aenabled&6!"
  116. else:
  117. if {tp} is true:
  118. send "&cTeleporting is already enabled!"
  119.  
  120. command /teleportoff:
  121. permission: tpoff
  122. trigger:
  123. if {tp} is true:
  124. set {tp} to false
  125. send "&e&lULTRA WAND &8- &6Teleporting has been &cdisabled&6!"
  126. else:
  127. if {tp} is false:
  128. send "&cTeleporting is already disabled!"
  129.  
  130. command /launchon:
  131. permission: launchon
  132. trigger:
  133. if {l} is false:
  134. set {l} to true
  135. send "&e&lULTRA WAND &8- &6Launch has been &aenabled&6!"
  136. else:
  137. if {l} is true:
  138. send "&cLaunch is already enabled"
  139.  
  140. command /launchoff:
  141. permission: luanchoff
  142. trigger:
  143. if {l} is true:
  144. set {l} to false
  145. send "&e&lULTRA WAND &8- &6Launch has been &cdisabled&6!"
  146. else:
  147. if {l} is false:
  148. send "&cLaunch is already disabled!"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement