jserve

Untitled

Jan 28th, 2021 (edited)
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. iter = 20
  2. cur_iter = 1
  3. while cur_iter <= iter do
  4. turtle.refuel()
  5. turtle.dig()
  6. turtle.forward()
  7. turtle.select(2)
  8. turtle.place()
  9. turtle.placeDown()
  10. turtle.turnLeft()
  11. turtle.place()
  12. turtle.turnRight()
  13. turtle.turnRight()
  14. turtle.dig()
  15. turtle.place()
  16. turtle.turnLeft()
  17. turtle.digUp()
  18. turtle.up()
  19. turtle.place()
  20. turtle.turnLeft()
  21. turtle.place()
  22. turtle.turnRight()
  23. turtle.placeUp()
  24. turtle.turnRight()
  25. turtle.dig()
  26. turtle.place()
  27. turtle.turnLeft()
  28. turtle.down()
  29. cur_iter = cur_iter + 1
  30. end
Add Comment
Please, Sign In to add comment