hubeb

2

May 7th, 2013
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. local height = 0
  2.  
  3. turtle.dig()
  4. turtle.forward()
  5. turtle.dig()
  6.  
  7. while turtle.digUp() do
  8. turtle.up()
  9. turtle.dig()
  10. height = height + 1
  11. end
  12.  
  13. turtle.turnRight()
  14. turtle.dig()
  15. turtle.forward()
  16. turtle.turnLeft()
  17. turtle.dig()
  18.  
  19. while height > 0 do
  20. height = height - 1
  21. turtle.digDown()
  22. turtle.down()
  23. turtle.dig()
  24. end
Add Comment
Please, Sign In to add comment