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
I am trying to write my own turtle script that will make the mining turtle plant and cut down a normal oak tree my. Script that I have so far is as follows:
function Grow()
turtle.select(1)
turtle.place()
end
function Bonemeal()
turtle.select(2)
turtle.place()
end
I'm not sure...