Posted 30 December 2012 - 07:10 PM
I am trying to get my turtle to drop his inventory after returning from a trip. This is the code for him to drop the stuff:
It worked fine if I separate it into its own program, but the turtle ignores the turtle.drop() command completely in my code. I don't have anything I know of that could interfere with it. What could interfere with the drop command.
for i = 1,16 do
turtle.select(i)
turtle.drop()
end
print("dropped")
turtle.select(1)
It worked fine if I separate it into its own program, but the turtle ignores the turtle.drop() command completely in my code. I don't have anything I know of that could interfere with it. What could interfere with the drop command.