Advertisement
ItzOPOfficial

Untitled

Dec 16th, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. Options: #Customizable
  2.  
  3. pressure plate: iron pressure plate
  4. block: redstone block
  5. launch height: 0.3
  6. launch speed: 0.5
  7. sound: random.bow
  8. pitch: 1
  9. volume: 0.5
  10.  
  11. on pressure plate:
  12. if event-block is {@pressure plate}:
  13. if block below event-block is {@block}:
  14. cancel event
  15. push the player upwards at speed {@launch height}
  16. push the player forwards at speed {@launch speed}
  17. play raw sound "{@sound}" at event-block with pitch {@pitch} volume {@volume}
  18. play mobspawner flames at event-block
  19. set {launched.%player%} to true
  20.  
  21. on damage:
  22. if damage cause is fall:
  23. if {launched.%victim%} is true:
  24. set {launched.%victim%} to false
  25. cancel event
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement