say 3
@s = self · @p = nearest player · @a = all players · @e = all entities
-Intermediate · 4 blocks
Use four Command Blocks and Redstone Repeaters to announce 3, 2, 1, and Go! in chat before a minigame starts.
What you need
Expected result
Every player sees 3, 2, 1, and Go! in sequence at the pace set by the Redstone Repeaters.
Placement direction
Configure one block at a time
The copy button copies only Command Input. Choose every other value in the Command Block screen.
Attach the button to the first block, then run the signal through a Redstone Repeater to the next block.
say 3
@s = self · @p = nearest player · @a = all players · @e = all entities
-Receive the first delayed signal, then connect another Repeater to the third block.
say 2
@s = self · @p = nearest player · @a = all players · @e = all entities
-Receive the third signal, then connect the final Repeater to the start block.
say 1
@s = self · @p = nearest player · @a = all players · @e = all entities
-The final block receives the last delayed signal and announces the start.
say Go!
@s = self · @p = nearest player · @a = all players · @e = all entities
-If it does not work