Turtle Road Program

  • 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

masterventris

New Member
Jul 29, 2019
41
0
0
Have you made a turtle program before? I would start with:
Code:
length = 0
while length < ROAD_LENGTH do
    turtle.digDown()
    turtle.placeDown()
    length++
end

and go from there, adding code to handle uneven terrain and running out of road materials.