Sprinricco

Untitled

Feb 3rd, 2013
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. function TreeTop()
  2. turtle.dig()
  3. turtle.forward()
  4. while turtle.detectUp() do
  5. turtle.digUp()
  6. turtle.up()
  7. end
  8. end
  9. function TreeBot()
  10. while not turtle.detectDown() do
  11. turtle.down()
  12. end
  13. end
  14. TreeTop()
  15. TreeBot()
  16. TreeTop()
  17. TreeBot()
  18. turtle.turnRight()
  19. TreeTop()
  20. TreeBot()
  21. turtle.turnRight()
  22. TreeTop()
  23. TreeBot()
Add Comment
Please, Sign In to add comment