Posted 13 June 2013 - 11:53 PM
Hi Im trying to make turtle program where i have a long line of turtles and they all dig down to bed rock then then go forward and dig all the way down again. But I cant quite cant my turtle to recognize when they hit bedrock
what im using now
but this isnt working at all because he wont stop his while true loop so he never prints bedrock
what im using now
function down()
while true do
turtle.digDown()
turtle.down()
if turtle.down == false then
print("bedrock")
end
end
end
but this isnt working at all because he wont stop his while true loop so he never prints bedrock