Relative to a Command block, but Independent is half arrow, half X sign command block that only executed when a previous command block before it failed to execute or [didn't execute if conditional or independent].
If you don't know what Independent means, it's an opposite of "Conditional"
Example with Independent(s) (- = Independent, * = Conditional):
- /Clear @p Redstone 0 0 (Checking State)
- -/Give @p[scores={contain_redstonedust=1..}] Redstone
- */Scoreboard players remove @p contain_redstonedust 1
You see how easy that is? It only took me 3 command blocks to make this. Here is an example without independent command blocks:
- /Clear @p Redstone 0 0
- */Tag @p add check_redstonedust
- /Give @p[tag=!check_redstonedust,scores={contain_redstonedust=1}]
- */Scoreboard players remove @p contain_redstonedust 1
- /Tag @p remove check_redstonedust
This took me 5 command blocks to make. That's nearly twice of room.
Please sign in to leave a comment.
5 Comments