CREAMPAN0408

Untitled

Jan 21st, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. ブレイズロッドを右クリックすると体力が回復し10秒間使えなくなる
  2. ブレイズパウダーを使用するとクールタームが3秒縮む
  3. クールタイムはアクションバーに表示されますが故よろです
  4.  
  5. on rightclick with Blaze Rod:
  6. if {heal.%player%} is not set:
  7. set {heal.%player%} to 0
  8. {heal.%player%} is 0
  9. heal player
  10. set {heal.%player%} to 10
  11. while {heal.%player%} is not 0:
  12. wait 1 second
  13. subtract 1 from {heal.%player%}
  14. if player's tool is Blaze Rod:
  15. send action bar from "<lime>%{heal.%player%}%" to player
  16.  
  17.  
  18. on rightclick with Blaze Powder:
  19. {heal.%player%} is more than 2
  20. subtract 3 from {heal.%player%}
  21. remove 1 Blaze Powder from player
Add Comment
Please, Sign In to add comment