Need a turtle logging program that won't break when the server resets

  • Please make sure you are posting in the correct place. Server ads go here and modpack bugs go here
  • 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

namiasdf

New Member
Jul 29, 2019
2,183
0
0
That is a pretty good solution. If you arrange your trees in rows and have turtles in between the rows, you only need to count the distance to either side:


[topmarker][topmarker][topmarker]
[tree]--------------x---------------[tree]
[tree]--------------x---------------[tree]
[tree]--------------x---------------[tree]
[tree]--------------x---------------[tree]
[tree]--------------x---------------[tree]
[tree]--------------x---------------[tree]
[tree]--------------x---------------[tree]
[bottommarker]------[bottommarker]

So have it either turn left or right every single time. I am not sure if turtles can turn 180 in a step, or if you want to account for turtles moving between each row marked by --------------x--------------

Either way it'll hit a tree or a top/bottom marker. Using that as a reference go. Your startup program will have to account for if it hits a tree, cut the tree, turn left, check if top or bottom marker then go from there. If it just hits a marker, go from there.

I am by no means a turtle programmer, but this is a programmable solution.