Advertisement
pfgpastebin

Untitled

Jun 11th, 2023
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. local forward_dist = 20
  2. local right_dist_over_two = 10
  3. while true do
  4. for j=1,right_dist_over_two do
  5. for i=1,forward_dist do
  6. turtle.dig()
  7. turtle.forward()
  8. end
  9. turtle.turnRight()
  10. turtle.dig()
  11. turtle.forward()
  12. turtle.turnRight()
  13. for i=1,forward_dist do
  14. turtle.dig()
  15. turtle.forward()
  16. end
  17. turtle.turnLeft()
  18. turtle.dig()
  19. turtle.forward()
  20. turtle.turnLeft()
  21. end
  22. turtle.turnLeft()
  23. for j=1,right_dist_over_two * 2 do
  24. turtle.forward()
  25. end
  26. turtle.digDown()
  27. turtle.down()
  28. turtle.turnRight()
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement