Advertisement
TIMAS_Bro

Untitled

Jan 14th, 2024 (edited)
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. turtle.refuel()
  2. local x, y, z = 1, 1, 1
  3. local function gotoChest(newX, newY, newZ)
  4. local direction = nil
  5. if x < newX then direction = "right" turtle.turnRight() elseif x > newX then direction = "left" turtle.turnLeft() end
  6. while x < newX do
  7. turtle.forward()
  8. x = x + 1
  9. turtle.digDown()
  10. end
  11. while x > newX do
  12. turtle.forward()
  13. x = x - 1
  14. turtle.digDown()
  15. end
  16. if direction == "right" then turtle.turnLeft() elseif direction == "left" then turtle.turnRight() end
  17. while z < newZ do
  18. turtle.forward()
  19. z = z + 1
  20. end
  21. while z > newZ do
  22. turtle.back()
  23. z = z - 1
  24. end
  25. while y < newY do
  26. turtle.up()
  27. y = y + 1
  28. end
  29. while y > newY do
  30. turtle.down()
  31. y = y - 1
  32. end
  33. end
  34. -- for lookups:
  35. local chests = {}
  36. local function parkC(chest)
  37. local coords = chests[chest]
  38. gotoChest(coords[1], coords[2],coords[3])
  39. end
  40. for y = 1, 9 do
  41. for x = 1, 9 do
  42. for z = 1, 9 do
  43. table.insert(chests, {x, y, z})
  44. end
  45. end
  46. end
  47. for i=1,81*3 do
  48. parkC(i)
  49. turtle.digDown()
  50. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement