Sethbling's Turtle tree felling script.

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

lopu

New Member
Jul 29, 2019
6
0
0
Hey there everyone, I am starting out with computer craft and am trying to make a program for my turtle which will plant saplings 4x4 then use 1 bone meal. fell the whole tree, then come down empty the contents into a chest, check to refuel, if it needs to refuel then do so. Other wise get coal from a chest. And then go to a certain spot and pick up saplings which have fallen to there (i'm going to use a pool to make the saplings fallen gather at a point. then go to the middle again and start all over. Or in the middle have it empty the wood into some furnaces :)

Any suggestions.

So far I have:

Code:
if turtle.getItemCount(1) <1 then
  turtle.suck()
else
print "...no need"
end
 
slot 1 is where the charcoal will go by the way

and

a script to check for current fuel level and refuel if need be.

Cheers Nik