Advertisement
Guest User

Untitled

a guest
Jun 20th, 2018
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. function moveDown(x)
  2. for i = x , 1, 1
  3. do
  4. turtle.down();
  5. end
  6. end
  7. local height = 3
  8.  
  9.  
  10. --while true do
  11. for i = height , 1, 1
  12. turtle.turnLeft()
  13. turtle.dig()
  14. turtle.turnRight()
  15. turtle.dig()
  16. turtle.turnRight()
  17. turtle.dig()
  18. turtle.turnLeft()
  19. turtle.digUp()
  20. turtle.up();
  21. end
  22. moveDown(height)
  23. --end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement