How to put a redstone block in clock mode?
I saw this video by SethBling. (The video is caught up to the moment of my question)
He says "Make sure these are in clock mode" what does he mean by clock mode?
2 Answers
As a note, Sethbling asks you to import the schematic. Anyways...
What Sethbling refers to as clock mode is a redstone block that is continually being replaced.
As you see in the video, as he destroys the block, it immediately appears again. This is a neat little trick - you can make a redstone clock that signals up to 20 times per second.
To do this, have a layout like this:
z-- <- [C][R][C] -> z++Where Cs are the command blocks and R is the redstone block.
Open up F3 and make sure that the z coordinate of the right command block > redstone block > left command block.
If you want to line it up over a different axis, just change the following codes. Remember - first x, then y, finally z.
On the leftmost command block, type this:
/fill ~ ~ ~1 ~ ~ ~1 redstone_blockOn the rightmost:
/fill ~ ~ ~-1 ~ ~ ~-1 airFinally, put the redstone block in the middle. Now, it will magically become the fastest clock in Minecraft. (As far as we know.)
9clock mode means that 1 or maybe 2 command blocks are used to make clocks that to to the other commanc blocks. so basicly it is a clock made out of command blocks they are fast
if you want to make one the most easyest way to do this with only one command block is.
/setblock ~0 ~1 ~0 minecraft:redstone_block 0 destroy
but if you want to make one like on sethblings video you need to do it like this
/fill x1 y1 z1 x2 y2 z2 minecraft:redstone_block 0 destroy
so if you want to use it like in is video