Posted 21 June 2013 - 12:53 PM
Hey!
So I wanted to use Sethbling's Autowood program wich I copied into my Turtle, but my problem is that it is unable to place the saplings. It runs properly, just doesn't place them, and then bonemeals the ground. But why? (I placed them in slot 15 where they are supposed to be placed.)
The code:
Thanks in advance for the help,
XinoHUN
So I wanted to use Sethbling's Autowood program wich I copied into my Turtle, but my problem is that it is unable to place the saplings. It runs properly, just doesn't place them, and then bonemeals the ground. But why? (I placed them in slot 15 where they are supposed to be placed.)
The code:
local function replant()
turtle.select(15)
turtle.suck()
turtle.place()
turtle.turnLeft()
turtle.suck()
turtle.forward()
turtle.suck()
turtle.turnRight()
turtle.suck()
turtle.place()
turtle.turnRight()
turtle.suck()
turtle.place()
turtle.turnRight()
turtle.suck()
turtle.forward()
turtle.suck()
for slot=3,7 do
turtle.select(slot)
turtle.drop()
end
turtle.turnLeft()
turtle.turnLeft()
turtle.select(15)
turtle.place()
while turtle.compare() do
turtle.select(16)
turtle.place()
turtle.select(15)
end
end
Thanks in advance for the help,
XinoHUN