Advertisement
astonish01

Mining Turtle 3x3 1.10.2 + Enderchest

Sep 18th, 2017
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.20 KB | None | 0 0
  1. print("Place your default colored enderchest on the slot most to the right-down")
  2. print("Waiting for number of reps, each rep does a 3x3 nine blocks forward, a total of 81 blocks in volume")
  3. local reps = tonumber( read() )
  4. for i=1, reps do
  5. for i=1, 9 do
  6. turtle.dig()
  7. turtle.turnLeft()
  8. turtle.forward()
  9. turtle.turnRight()
  10. turtle.dig()
  11. turtle.turnRight()
  12. turtle.forward()
  13. turtle.forward()
  14. turtle.turnLeft()
  15. turtle.dig()
  16. turtle.turnLeft()
  17. turtle.forward()
  18. turtle.turnRight()
  19. turtle.up()
  20. turtle.dig()
  21. turtle.turnLeft()
  22. turtle.forward()
  23. turtle.turnRight()
  24. turtle.dig()
  25. turtle.turnRight()
  26. turtle.forward()
  27. turtle.forward()
  28. turtle.turnLeft()
  29. turtle.dig()
  30. turtle.turnLeft()
  31. turtle.forward()
  32. turtle.turnRight()
  33. turtle.down()
  34. turtle.down()
  35. turtle.dig()
  36. turtle.turnLeft()
  37. turtle.forward()
  38. turtle.turnRight()
  39. turtle.dig()
  40. turtle.turnRight()
  41. turtle.forward()
  42. turtle.forward()
  43. turtle.turnLeft()
  44. turtle.dig()
  45. turtle.turnLeft()
  46. turtle.forward()
  47. turtle.turnRight()
  48. turtle.up()
  49. turtle.forward()
  50. end
  51. turtle.select(16)
  52. turtle.turnLeft()
  53. turtle.turnLeft()
  54. turtle.place()
  55. for i=1, 15 do
  56. turtle.select(i)
  57. turtle.drop()
  58. end
  59. turtle.select(16)
  60. turtle.dig()
  61. turtle.turnLeft()
  62. turtle.turnLeft()
  63. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement