moeycvbn12

Untitled

Dec 2nd, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. #======================#
  2. # #
  3. # LAUNCH #
  4. # #
  5. # Version: 1.0 #
  6. # #
  7. # By: Plutoids #
  8. # #
  9. #======================#
  10.  
  11. options:
  12.  
  13. # CONFIGURE THE MESSAGE HERE #
  14.  
  15. Message: &a&l(!) &aYou launched &b&lyourself&a!
  16. NoPermissionMessage: &c&l(!)&c You do not have permission.
  17. Height: 200
  18. Speed: 0.5
  19.  
  20. # DO NOT CHANGED THIS PART UNLESS YOU KNOW WHAT YOU'RE DOING #
  21.  
  22. Permission: ely.use
  23. ParticleAmount: 25
  24.  
  25.  
  26. # DO NOT CHANGED THIS PART UNLESS YOU KNOW WHAT YOU'RE DOING #
  27.  
  28. command /ely:
  29. trigger:
  30.  
  31. if player has permission "{@Permission}":
  32. push the player upwards at speed {@Height}
  33. push the player upwards at speed {@Speed}
  34. send "{@Message}"
  35. set {launch.%player%} to true
  36.  
  37.  
  38. else:
  39. send "{@NoPermissionMessage}"
  40.  
  41. on damage:
  42. if damage cause is fall:
  43. if {launch.%victim%} is true:
  44. set {launch.%victim%} to false
  45. cancel event
Advertisement
Add Comment
Please, Sign In to add comment