1
Why my chain commandblocks isnt working?
I have this command blocks and chain commandblocks isnt working. How can i fix it?
3
Change the chain command blocks to unconditional
In the Chain Command Blocks you test if timer in the scoreboard "timer" is 100. In the Repeating Command Block you're adding 1 to your score not to timer. You have 2 options to fix this:
1. Chain Command Block: execute as @a if score @s timer matches 100 run say sven
or
2. Repeating Command Block: scoreboard players add timer timer 1
Now only the first Chain Command Block should work. To fix this issue set both Chain Command Blocks to Unconditional
1. Chain Command Block: execute as @a if score @s timer matches 100 run say sven
or
2. Repeating Command Block: scoreboard players add timer timer 1
Now only the first Chain Command Block should work. To fix this issue set both Chain Command Blocks to Unconditional
thanks you very much !! option 2 worked well
