Advertisement
plz1351

Untitled

Oct 22nd, 2018
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. on join:
  2. set {haste.%Player%} to "off"
  3.  
  4. on Rightclick with sugar:
  5. if {haste.%Player%} is "on":
  6. send "&8[&7Mine&8] &7Skillの使用を &eoff &7にしました"
  7. set {haste.%Player%} to "off"
  8.  
  9. on leftClick with sugar:
  10. if {haste.%Player%} is "off":
  11. if Player has gold_Nugget:
  12. set {haste.%Player%} to "on"
  13. send "&8[&7Mine&8] &7Skillの使用を &eon &7にしました"
  14. send "&8[&7Mine&8] &7Skillを発動させました" to Player
  15. apply haste 2 to the Player for 300 seconds
  16. remove 1 gold_Nugget from Player
  17.  
  18. every 5 minutes:
  19. loop all Players:
  20. if {haste.%loop-Player%} is "on":
  21. if loop-Player has gold_Nugget:
  22. send "&8[&7Mine&8] &7Skillを発動させました" to loop-Player
  23. apply haste 2 to the loop-Player for 300 seconds
  24. remove 1 gold_Nugget from loop-Player
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement