I've been reading over the Wiki and the forums here and I can't seem to get my Turtles to just do a basic action like Move. Our server does not require turtles to be fueled so I know that is not the issue.
My basic code is this:
I'm really confused. I can get it to Turn however. That same code works just fine if I replace turtle.forward with turtle.turnLeft it will turn left forever until I ctrl+t the program. So what am I missing? Is the server configured to not allow move commands? When I go in to the API Mode and do any turtle move commands it returns false.
My basic code is this:
Code:
while turtle.detectDown() do
turtle.forward()
end
I'm really confused. I can get it to Turn however. That same code works just fine if I replace turtle.forward with turtle.turnLeft it will turn left forever until I ctrl+t the program. So what am I missing? Is the server configured to not allow move commands? When I go in to the API Mode and do any turtle move commands it returns false.