Advertisement
Guest User

Timery w Minecraft - by Szinton

a guest
Apr 26th, 2017
3,993
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.76 KB | None | 0 0
  1. Timery w MC - Szinton
  2.  
  3. LICZNIK 1:
  4.  
  5. Dodanie tablicy:
  6. scoreboard objectives add timer1 dummy Timer1
  7. scoreboard objectives setdisplay sidebar timer1
  8.  
  9. Naliczanie timera:
  10. scoreboard players add @a timer1 1
  11. scoreboard players add @a[score_timer1_min=1] timer1 1
  12.  
  13. Włączanie i wyłączanie timera:
  14. setblock 9977 67 20023 minecraft:redstone_block
  15. blockdata 9977 68 20023 {auto:1b}
  16. scoreboard players set @p timer1 1
  17. blockdata 9977 68 20023 {auto:0b}
  18.  
  19. Podawanie wyniku:
  20. tellraw @p {"text":"Twoj wynik to: ","color":"blue","extra":[{"score":{"objective":"timer1","name":"@p"}}]}
  21.  
  22. Resetowanie wyniku:
  23. scoreboard players set @p timer1 0
  24.  
  25.  
  26. LICZNIK 2:
  27.  
  28. Wyświetlanie tekstu nad hotbarem:
  29. title @a actionbar {"score":{"objective":"timer1","name":"@p"},"color":"red","bold":"true"}
  30.  
  31.  
  32. LICZNIK 3:
  33.  
  34. Dodanie tablic:
  35. scoreboard objectives add t1 dummy T1
  36. scoreboard objectives add sekundy dummy Sekundy
  37. scoreboard objectives setdisplay sidebar sekundy
  38.  
  39. Naliczanie timera:
  40. scoreboard players add @a[score_t1_min=0] t1 1
  41.  
  42. Przeliczanie na sekundy:
  43. scoreboard players add @a[score_t1_min=20] sekundy 1
  44. scoreboard players set @a[score_t1_min=20] t1 0
  45.  
  46. Resetowanie tablic:
  47. scoreboard players set @p t1 -1
  48. scoreboard players set @p sekundy 0
  49.  
  50. Podawanie wyniku:
  51. tellraw @p {"text":"Twoj czas to: ","color":"gold","extra":[{"score":{"objective":"sekundy","name":"@p"}},{"text":"s!"}]}
  52.  
  53.  
  54. LICZNIK 4:
  55.  
  56. Naliczanie timera:
  57. scoreboard players add @a[score_t1_min=0] t1 5
  58.  
  59. Przeliczanie na sekundy:
  60. scoreboard players add @a[score_t1_min=100] sekundy 1
  61. scoreboard players set @a[score_t1_min=100] t1 0
  62.  
  63. Wyświetlanie tekstu nad hotbarem:
  64. title @p[score_t1_min=1] actionbar {"score":{"objective":"sekundy","name":"@p"},"extra":[{"text":":"},{"score":{"objective":"t1","name":"@p"}}],"color":"aqua"}
  65.  
  66. Podawanie wyniku:
  67. tellraw @p {"text":"Twoj czas to: ","color":"gold","extra":[{"score":{"objective":"sekundy","name":"@p"}},{"text":","},{"score":{"objective":"t1","name":"@p"}},{"text":"s!"}]}
  68.  
  69.  
  70. LICZNIK 5:
  71.  
  72. Wyświetlanie tekstu nad hotbarem:
  73. title @p[score_t1_min=10] actionbar {"score":{"objective":"sekundy","name":"@p"},"extra":[{"text":":"},{"score":{"objective":"t1","name":"@p"}}],"color":"aqua"}
  74. title @p[score_t1_min=1,score_t1=9] actionbar {"score":{"objective":"sekundy","name":"@p"},"extra":[{"text":":0"},{"score":{"objective":"t1","name":"@p"}}],"color":"aqua"}
  75.  
  76. Podawanie wyniku:
  77. tellraw @p[score_t1_min=10] {"text":"Twoj czas to: ","color":"gold","extra":[{"score":{"objective":"sekundy","name":"@p"}},{"text":","},{"score":{"objective":"t1","name":"@p"}},{"text":"s!"}]}
  78. tellraw @p[score_t1_min=1,score_t1=9] {"text":"Twoj czas to: ","color":"gold","extra":[{"score":{"objective":"sekundy","name":"@p"}},{"text":",0"},{"score":{"objective":"t1","name":"@p"}},{"text":"s!"}]}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement