Posted 07 April 2013 - 09:08 AM
if you ever needed a hidden 1x2 turtledoor, here is my hidden door program.
needed: blocks, at least a mining turtle.
code:
tutorial:
needed: blocks, at least a mining turtle.
code:
function TwoUp()
turtle.Up()
turtle.Up()
end
function RemoveDoor()
turtle.down()
turtle.dig()
turtle.down()
turtle.dig()
TwoUp()
end
function PlaceDoor()
turtle.down()
turtle.place()
turtle.down()
turtle.place()
TwoUp()
end
RemoveDoor()
sleep(20)
PlaceDoor()
tutorial:
- make a frame where a 1x2 (vertical) door fits in.
- place the turtle behind the frame on the upside facing the frame.
- place the blocks you wanted to be the door on a 1x2 (vertical) inside that frame.