Advertisement
jjswebs

Untitled

Apr 24th, 2013
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function detectdown()
  2. turtle.select(15)
  3. while turtle.compareDown() do
  4. turtle.digDown()
  5. turtle.down()
  6. end
  7. end
  8. function cut()
  9. turtle.dig()
  10. turtle.turnRight()
  11. turtle.dig()
  12. turtle.turnLeft()
  13. end
  14. turtle.dig()
  15. turtle.forward()
  16. turtle.select(15)
  17. while turtle.compareUp() do
  18. cut()
  19. turtle.digUp()
  20. turtle.up()
  21. end
  22. cut()
  23. turtle.forward()
  24. turtle.turnRight()
  25. turtle.dig()
  26. turtle.forward()
  27. detectdown()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement