SummitSummit

CC turtle chop

Nov 7th, 2012
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. function Chop()
  2. while turtle.detectUp() or turtle.detect() do
  3. turtle.digUp()
  4. turtle.dig()
  5. turtle.up()
  6. end
  7. while not turtle.detectUp() and not turtle.detectDown() do
  8. turtle.down()
  9. end
  10. end
  11. turtle.dig()
  12. turtle.forward()
  13. Chop()
  14. turtle.turnRight()
  15. turtle.dig()
  16. turtle.forward()
  17. turtle.turnLeft()
  18. Chop()
  19. print("Job's Done!")
Advertisement
Add Comment
Please, Sign In to add comment