Blogs Article

Earth to Echo Maze tutorial

  • 571 views 0 today
  • 1
  • 0
MrDimeren
Lvl 27Expert System
3
Hello people of minecraft to another Minecraft tutorial.In this tutorial we are reproducing the Earth to Echo jail maze .

♦What we do? we are creating the maze like in the first picture...all the diferent blocks are the key
Stone block = the real path
♦Wool block = checkpoint
Clay=redstone block ,tp you back to checkpoint
Sand block=redstone block ,tp you back to checkpoint
Gold block=redstone block ,tp you back to checkpoint
Snow block=redstone block ,tp you back to checkpoint


So what you realy do is you check if you have 2 blocks under you ~ ~-2 ~ those kind of blocks and if you do they will change in the blocks you want
Code: execute @e ~ ~ ~ detect ~ ~-2 ~ stone 0 /setblock ~ ~-1 ~ minecraft:emerald_block
            execute @e ~ ~ ~ detect ~ ~-2 ~ wool 0 /setblock ~ ~-1 ~ minecraft:lapis_block
            execute @e ~ ~ ~ detect ~ ~-2 ~ clay 0 /setblock ~ ~-1 ~ minecraft:redstone_block
            execute @e ~ ~ ~ detect ~ ~-2 ~ sand 0 /setblock ~ ~-1 ~ minecraft:redstone_block
            execute @e ~ ~ ~ detect ~ ~-2 ~ gold_block 0 /setblock ~ ~-1 ~ minecraft:redstone_block
            execute @e ~ ~ ~ detect ~ ~-2 ~ snow 0 /setblock ~ ~-1 ~ minecraft:redstone_block

And where you will have redstone_block you will get a comparator which will send a signal to a command block with a certain code .Which it will tp you to the different checkpoints you created
Code: execute @e ~ ~ ~ detect ~ ~-2 ~ clay 0 /tp @e[c=1] 844 52 1789
           And so on...

Youtube video about how its done : Click Here

More like this

  Have something to say?

Welcome