Advertisement
nnimos

Untitled

May 6th, 2015
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1.  
  2. function turtledig()
  3. local count = 0
  4.  
  5. while count < 50
  6. do
  7. turtle.digUp()
  8. turtle.up
  9. turtle.digUp()
  10. turtle.up
  11. turtle.dig()
  12. turtle.forward()
  13. turtle.digDown()
  14. turtle.down
  15. turtle.digDown()
  16. turtle.down
  17. turtle.dig()
  18. turtle.forward()
  19. count = count+1
  20. end
  21. end
  22.  
  23. turtledig()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement