bigtwisty

Tree

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