Guest User

Untitled

a guest
Apr 30th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. function dig()
  2. turtle.dig()
  3. turtle.up()
  4. turtle.dig()
  5. turtle.forward()
  6. turtle.turnLeft()
  7. turtle.dig()
  8. turtle.down()
  9. turtle.dig()
  10. turtle.turnRight()
  11. end
  12. dig()
  13. a = 1
  14. repeat
  15. turtle.dig()
  16. turtle.forward()
  17. turtle.dig()
  18. turtle.forward()
  19. turtle.turnLeft()
  20. turtle.dig()
  21. turtle.forward()
  22. turtle.turnLeft()
  23. turtle.dig()
  24. turtle.forward()
  25. turtle.digDown()
  26. turtle.down()
  27. turtle.dig()
  28. turtle.forward()
  29. turtle.turnLeft()
  30. turtle.dig()
  31. turtle.forward()
  32. turtle.turnLeft()
  33. turtle.forward()
  34. turtle.dig()
  35. turtle.forward()
  36. a = a + 1
  37. until a == 20
Add Comment
Please, Sign In to add comment