tomtrein

Untitled

Jun 12th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. local tArgs = { ... }
  2. i = 0
  3. while true do
  4. i = i + 1
  5. print(i)
  6. turtle.dig()
  7. turtle.select(2)
  8. turtle.placeDown()
  9. turtle.placeUp()
  10. turtle.digDown()
  11. if i==10 then
  12. i = 0
  13. turtle.select(1)
  14. turtle.placeDown()
  15. turtle.select(2)
  16. turtle.placeUp()
  17. turtle.select(16)
  18. turtle.refuel()
  19. end
  20. turtle.forward()
  21. end
Advertisement
Add Comment
Please, Sign In to add comment