Advertisement
ecco7777

turtle miningwell placer

Feb 8th, 2015
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.34 KB | None | 0 0
  1. print("Slot 1 = 3 Miningwells")
  2. print("Slot 2 = BC Producer")
  3. print("Slot 3 = 3 Enderchests")
  4. print("Slot 4 = Energybridge")
  5. print("Slot 5 = HV Consumer")
  6. print("Slot 6 = Solarpanel")
  7.  
  8. while true do
  9.  
  10. turtle.select(1)
  11. turtle.place()
  12. turtle.turnRight()
  13. turtle.place()
  14. turtle.turnLeft()
  15. turtle.turnLeft()
  16. turtle.place()
  17. turtle.turnRight()
  18. turtle.up()
  19. turtle.select(2)
  20. turtle.placeDown()
  21. turtle.select(3)
  22. turtle.place()
  23. turtle.turnRight()
  24. turtle.place()
  25. turtle.turnLeft()
  26. turtle.turnLeft()
  27. turtle.place()
  28. turtle.turnRight()
  29. turtle.up()
  30. turtle.select(4)
  31. turtle.placeDown()
  32. turtle.up()
  33. turtle.select(5)
  34. turtle.placeDown()
  35. turtle.up()
  36. turtle.select(6)
  37. turtle.placeDown()
  38. turtle.select(7)
  39. turtle.turnRight()
  40. turtle.place()
  41. turtle.turnLeft()
  42. turtle.back()
  43. turtle.turnRight()
  44. turtle.dig()
  45. turtle.turnLeft()
  46. turtle.forward()
  47. turtle.select(6)
  48. sleep(10)
  49. turtle.digDown()
  50. turtle.select(5)
  51. turtle.down()
  52. turtle.digDown()
  53. turtle.select(4)
  54. turtle.down()
  55. turtle.digDown()
  56. turtle.select(2)
  57. turtle.down()
  58. turtle.digDown()
  59. turtle.select(3)
  60. turtle.dig()
  61. turtle.turnRight()
  62. turtle.dig()
  63. turtle.turnLeft()
  64. turtle.turnLeft()
  65. turtle.dig()
  66. turtle.turnRight()
  67. turtle.down()
  68. turtle.select(1)
  69. turtle.dig()
  70. turtle.turnRight()
  71. turtle.dig()
  72. turtle.turnLeft()
  73. turtle.turnLeft()
  74. turtle.dig()
  75. turtle.turnRight()
  76. turtle.forward()
  77. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement