Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if turtle.getFuelLevel() < 1000 then
- turtle.select(16)
- turtle.refuel(64)
- end
- turtle.select(1) -- building cylinder
- term.clear()
- print("Building Cylinder")
- local BuildLength = 0
- ::Loop::
- print(BuildLength," Blocks have been placed.")
- turtle.placeDown()
- turtle.forward()
- if(BuildLength < 10) then BuildLength++ else goto Loop
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement