Advertisement
nunonuno_riku

Untitled

May 19th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #
  2. #+------------------------------------------------------+
  3. #| ThorCommandMBA |
  4. #+------------------------------------------------------+
  5. #
  6.  
  7. Command /Thor:
  8. permission: sk.Thor
  9. trigger:
  10. if {thor.mode.%player%} is "false":
  11. set {thor.mode.%player%} to "true"
  12. send "&6雷の手を&aON&6にしました &7(左クリックでターゲットの位置に雷を落とせます、モードをオフにする際は/Thorと再度打てばオフに出来ます)"
  13.  
  14. else if {thor.mode.%player%} is "true":
  15. set {thor.mode.%player%} to "false"
  16. send "&6雷の手を&cOFF&6にしました (また使う際は/Thorと打てば使用可能です"
  17. else:
  18. if {thor.mode.%player%} is not set:
  19. set {thor.mode.%player%} to "true"
  20. send "&6雷の手を&aON&6にしました &7(左クリックでターゲットの位置に雷を落とせます、モードをオフにする際は/Thorと再度打てばオフに出来ます)"
  21. on leftclick with arrow:
  22. if {thor.mode.%player%} is "true":
  23. strike lightning at the targeted block
  24. else:
  25. stop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement