Posted 02 December 2012 - 11:41 PM
hello guys,
im busy at writing a code for the farming turtle for farming my wheat and i have two questions about it.
1. Is there a lua command for the farming turtle to check if the crops are fully grown? i didnt found one on the wikipage
2. I just started and put my code together and it looks maintenant like this:
my problem is the following:
my turtle does everything fine exept for the part where it turn left. the turtle stops after turing left everytime i try it… i dont know why but its a dumb fail for sure >.>
can i do anything about it?
im busy at writing a code for the farming turtle for farming my wheat and i have two questions about it.
1. Is there a lua command for the farming turtle to check if the crops are fully grown? i didnt found one on the wikipage
2. I just started and put my code together and it looks maintenant like this:
Spoiler
while turtle.detect() == false do
turtle.digDown()
turtle.placeDown()
turtle.forward()
turtle.detect()
end
if turtle.detect() == true then
turtle.turnLeft()
turtle.detect()
end
my problem is the following:
my turtle does everything fine exept for the part where it turn left. the turtle stops after turing left everytime i try it… i dont know why but its a dumb fail for sure >.>
can i do anything about it?