Check out my live stream!!! www.twitch.tv/sourcb
Very very quick tutorial on how to build a simple tree farm in ftb using the turtle provided in computer craft!
If you decide to use a refuel loop to auto re fuel just put coal or whatever in the bottom right slot and delete the "end" line in the code. go 2 spaces down from the sleep(30) line and type "if turtle.getFuelLevel() (less than bracket) 5 then turtle.refuel()"
The code--------
while turtle.getItemCount(2) ~=0 do
turtle.select(1)
turtle.place()
turtle.select(2)
turtle.place()
turtle.dig()
turtle.forward()
turtle.digUp()
turtle.up()
turtle.digUp()
turtle.up()
turtle.digUp()
turtle.up()
turtle.digUp()
turtle.up()
turtle.digUp()
turtle.up()
turtle.digUp()
turtle.up()
turtle.down()
turtle.down()
turtle.down()
turtle.down()
turtle.down()
turtle.down()
turtle.back()
sleep(30)
end
Ещё видео!