Advertisement
TechManDylan

Cyl

Mar 27th, 2013
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if turtle.getFuelLevel() < 1000 then
  2. turtle.select(16)
  3. turtle.refuel(64)
  4. end
  5. turtle.select(1) -- building cylinder
  6. term.clear()
  7. print("Building Cylinder")
  8. local BuildLength = 0
  9. ::Loop::
  10. print(BuildLength," Blocks have been placed.")
  11. turtle.placeDown()
  12. turtle.forward()
  13. if(BuildLength < 10) then BuildLength++ else goto Loop
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement