Advertisement
FNCPro

Turtle Tunnel Placer

Jun 26th, 2013
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. local time = 0
  2. term.write("How long do you want it to run??")
  3. time = read()
  4. for i = 0, time do
  5. turtle.forward()
  6. turtle.turnRight()
  7. turtle.place()
  8. turtle.turnLeft()
  9. turtle.turnLeft()
  10. turtle.place()
  11. turtle.turnRight()
  12. turtle.up()
  13. turtle.turnLeft()
  14. turtle.place()
  15. turtle.turnRight()
  16. turtle.turnRight()
  17. turtle.place()
  18. turtle.turnLeft()
  19. turtle.placeUp()
  20. turtle.down()
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement