Advertisement
nnimos

Untitled

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