Advertisement
sniperwolf1130

Untitled

May 25th, 2020
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. on join:
  2. set join message to "&6%player%が参加しました!"
  3. execute command "/clear %player%"
  4. give 1 nether star named "<gold>メニュー" to player
  5. execute command "/tp %player% 0.5 4 28.5"
  6.  
  7. on quit:
  8. set the quit message to "<gold>%player%が退出しました。"
  9.  
  10. on damage:
  11. {dc} is 1
  12. damage cause is fall
  13. cancel event
  14.  
  15. command /damagecontroll <text>:
  16. permission: op
  17. trigger:
  18. if arg is "on":
  19. set {dc} to 1
  20. else if arg is "off":
  21. set {dc} to 0
  22. else:
  23. message "<aqua>please enter ""on"" or ""off"""
  24.  
  25. command /crash <player>:
  26. permission: op
  27. trigger:
  28. send "You crashed %arg%."
  29. execute console command "/particle witchMagic %floor(x-coordinate of arg)% %floor(y-coordinate of arg)% %floor(z-coordinate of arg)% 1 1 1 1 100000000 force %arg%"
  30.  
  31. on rightclick with nether star:
  32. open chest with 3 row named "<gold><bold>Menu" to player
  33. wait 1 tick
  34. format slot 13 of player with nether star named "&aロビーにTP" to close then run "tp %player% 0.5 4 28.5"
  35.  
  36. on rightclick with wood hoe:
  37. cancel event
  38. shoot a fireball from player at speed 5
  39.  
  40. command /fb <int>:
  41. permission: op
  42. trigger:
  43. set {fb} to arg
  44.  
  45. on explode:
  46. event-entity is large fireball
  47. if {fb} is not set:
  48. set {fb} to 1
  49. cancel event
  50. create an explosion of force {fb} at the event-entity
  51. wait 5 tick
  52. execute command "/kill @e[type=item]"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement