Advertisement
Guest User

Untitled

a guest
Jun 29th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. function dig()
  2. turtle.dig()
  3. turtle.digUp()
  4. turtle.up()
  5. end
  6. function tree()
  7.  
  8. if turtle.detect() == true then
  9. dig()
  10. dig()
  11. dig()
  12. dig()
  13. turtle.down()
  14. turtle.down()
  15. turtle.down()
  16. turtle.down()
  17. turtle.down()
  18. turtle.dig()
  19. turtle.up()
  20. end
  21. end
  22. repeat
  23. tree()
  24. turtle.turnRight()
  25. tree()
  26. turtle.turnRight()
  27. tree()
  28. turtle.turnRight()
  29. tree()
  30. turtle.turnRight()
  31. sleep(60)
  32. until
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement