Advertisement
CREAMPAN0408

Untitled

Feb 22nd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. command /board:
  2. trigger:
  3. if {board} is true:
  4. display board named "&6UHC" to player
  5. make score "&6Timer: &c%{time.m}%:%{time.s}%" in board of player to 1
  6. move display of player to sidebar
  7. if {board} is false:
  8. display board named "&6UHC" to player
  9. make score "&6Timer: &c%{time.m}%/%{time.s}%" in board of player to 1
  10.  
  11. every 1 second:
  12. make all players execute command "/board"
  13. add 1 to {time.s}
  14. if {time.s} is 60:
  15. set {time.s} to 0
  16. add 1 to {time.m}
  17.  
  18.  
  19. command /b <text>:
  20. trigger:
  21. if arg 1 is "on":
  22. set {board} to true
  23. if arg 1 is "off":
  24. set {board} to false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement