moeycvbn12

Untitled

Dec 19th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. # [Skript] LaunchPads 1.8
  2. # Version: 1.0
  3. # Created by: lapisguy
  4.  
  5. Options: #Customizable
  6.  
  7. pressure plate: gold pressure plate
  8. block: redstone block
  9. launch height: 0.4
  10. launch speed: 0.5
  11. sound: random.bow
  12. pitch: 1
  13. volume: 0.5
  14.  
  15.  
  16.  
  17.  
  18. on pressure plate:
  19. if event-block is {@pressure plate}:
  20. if block below event-block is {@block}:
  21. cancel event
  22. make console execute command "launch %player%"
  23. push the player upwards at speed {@launch height}
  24. push the player forwards at speed {@launch speed}
  25. play raw sound "{@sound}" at event-block with pitch {@pitch} volume {@volume}
  26. play mobspawner flames at event-block
  27. set {launched.%player%} to true
  28.  
  29.  
  30. on damage:
  31. if damage cause is fall:
  32. if {launched.%victim%} is true:
  33. set {launched.%victim%} to false
  34. cancel event
Add Comment
Please, Sign In to add comment