Advertisement
pfgpastebin

Untitled

Jun 11th, 2023
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. local forward_dist = 20
  2. local right_dist_over_two = 10
  3. while j=1,right_dist_over_two do
  4. for i=1,forward_dist do
  5. turtle.dig()
  6. turtle.forward()
  7. end
  8. turtle.turnRight()
  9. turtle.dig()
  10. turtle.forward()
  11. turtle.turnRight()
  12. for i=1,forward_dist do
  13. turtle.dig()
  14. turtle.forward()
  15. end
  16. turtle.turnLeft()
  17. turtle.turnLeft()
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement