Advertisement
Guest User

Turtle Mining Program

a guest
Sep 10th, 2013
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.03 KB | None | 0 0
  1. turtle.select(1)
  2. local fd = 0
  3.  
  4. local length = tonumber(60)
  5. local height = tonumber(12)
  6. local currentSlot = tonumber(1)
  7. local torch = 0
  8.  
  9. local function Refill()
  10. for i = 1,4 do
  11. if turtle.getItemSpace(i) ~= 0 then
  12. for j = 5,15 do
  13. turtle.select(j)
  14. if turtle.compareTo(i) then
  15. turtle.transferTo(i)
  16. end
  17. end
  18. end
  19. end
  20. currentSlot = 1
  21. turtle.select(currentSlot)
  22. end
  23.  
  24. local function Unload()
  25. for i = 5,15 do
  26. turtle.select(i)
  27. if turtle.getItemCount(i) > 0 then
  28. turtle.drop()
  29. end
  30. end
  31. currentSlot = 1
  32. turtle.select(currentSlot)
  33. end
  34.  
  35. local function gotoNextSlotIfEmpty()
  36. while turtle.getItemCount(currentSlot) < 2 do
  37. currentSlot = currentSlot + 1
  38. turtle.select(currentSlot)
  39. end
  40. if currentSlot == 16 then
  41. shell.exit()
  42. end
  43. end
  44.  
  45. local function PlaceBlock()
  46. gotoNextSlotIfEmpty()
  47. if turtle.compare() == false then
  48. if turtle.place() == false then
  49. repeat
  50. turtle.attack()
  51. gotoNextSlotIfEmpty()
  52. if turtle.detect() == true then
  53. if turtle.dig() == false then
  54. -- found obsidian
  55. return
  56. end
  57. end
  58. until turtle.place() == true
  59. end
  60. end
  61. end
  62.  
  63. local function PlaceBlockUp()
  64. gotoNextSlotIfEmpty()
  65. if turtle.compareUp() == false then
  66. if turtle.placeUp() == false then
  67. turtle.attackUp()
  68. repeat
  69. gotoNextSlotIfEmpty()
  70. if turtle.detectUp() == true then
  71. if turtle.digUp() == false then
  72. -- found obsidian
  73. return
  74. end
  75. end
  76. until turtle.placeUp() == true
  77. end
  78. end
  79. end
  80.  
  81. local function PlaceBlockDown()
  82. gotoNextSlotIfEmpty()
  83. if turtle.compareDown() == false then
  84. if turtle.placeDown() == false then
  85. turtle.attackDown()
  86. repeat
  87. gotoNextSlotIfEmpty()
  88. if turtle.detectDown() == true then
  89. if turtle.digDown() == false then
  90. -- found obsidian
  91. return
  92. end
  93. end
  94. until turtle.placeDown() == true
  95. end
  96. end
  97. end
  98.  
  99. local function NewDigUp()
  100. if turtle.detectUp() then
  101. turtle.digUp()
  102. end
  103. end
  104.  
  105. local function NewDig()
  106. if turtle.detect() then
  107. turtle.dig()
  108. end
  109. end
  110.  
  111. local function NewDigDown()
  112. if turtle.detectDown() then
  113. turtle.digDown()
  114. end
  115. end
  116.  
  117. local function tryUp()
  118. while not turtle.up() do
  119. if turtle.detectUp() then
  120. turtle.digUp()
  121. else
  122. turtle.attackUp()
  123. end
  124. end
  125. end
  126.  
  127. local function tryDown()
  128. while not turtle.down() do
  129. if turtle.detectDown() then
  130. turtle.digDown()
  131. else
  132. turtle.attackDown()
  133. end
  134. end
  135. end
  136.  
  137. local function tryForward()
  138. while not turtle.forward() do
  139. if turtle.detect() then
  140. turtle.dig()
  141. else
  142. turtle.attack()
  143. end
  144. end
  145. fd = fd + 1
  146. end
  147.  
  148. local function tryForward2()
  149. while not turtle.forward() do
  150. if turtle.detect() then
  151. turtle.dig()
  152. else
  153. turtle.attack()
  154. end
  155. end
  156. end
  157.  
  158. local function BlockSides()
  159. turtle.turnLeft()
  160. PlaceBlock()
  161. turtle.turnRight()
  162. PlaceBlock()
  163. turtle.turnRight()
  164. PlaceBlock()
  165. turtle.turnLeft()
  166. end
  167.  
  168. local function GoBack()
  169. for zzz = 1,fd do
  170. tryForward2()
  171. end
  172. end
  173.  
  174. local function ReturnToBox()
  175. turtle.turnLeft()
  176. turtle.turnLeft()
  177. for zzz = 1,fd do
  178. tryForward2()
  179. end
  180. Refill()
  181. Unload()
  182. turtle.turnRight()
  183. turtle.turnRight()
  184. GoBack()
  185. end
  186.  
  187. local function KillIt()
  188. NewDigDown()
  189. if turtle.down() then
  190. PlaceBlockUp()
  191. BlockSides()
  192. tryUp()
  193. PlaceBlockDown()
  194. end
  195. for u = 1,height do
  196. BlockSides()
  197. tryUp()
  198. end
  199. BlockSides()
  200. tryDown()
  201. PlaceBlockUp()
  202. tryForward()
  203. PlaceBlock()
  204. tryUp()
  205. BlockSides()
  206. tryDown()
  207. PlaceBlockUp()
  208. for u = 1,height-1 do
  209. BlockSides()
  210. tryDown()
  211. end
  212. BlockSides()
  213. NewDigDown()
  214. if turtle.down() then
  215. BlockSides()
  216. tryUp()
  217. PlaceBlockDown()
  218. end
  219. if turtle.getItemCount(14) > 0 then
  220. ReturnToBox()
  221. end
  222. end
  223.  
  224. local function RunSpecial()
  225. NewDigDown()
  226. if turtle.down() then
  227. PlaceBlockUp()
  228. BlockSides()
  229. tryUp()
  230. PlaceBlockDown()
  231. end
  232. for u = 1,height do
  233. BlockSides()
  234. if u > 4 then
  235. turtle.turnLeft()
  236. turtle.turnLeft()
  237. PlaceBlock()
  238. turtle.turnLeft()
  239. turtle.turnLeft()
  240. end
  241. tryUp()
  242. end
  243. BlockSides()
  244. turtle.turnLeft()
  245. turtle.turnLeft()
  246. PlaceBlock()
  247. turtle.turnLeft()
  248. turtle.turnLeft()
  249. tryDown()
  250. PlaceBlockUp()
  251. tryForward()
  252. PlaceBlock()
  253. tryUp()
  254. BlockSides()
  255. tryDown()
  256. PlaceBlockUp()
  257. for u = 1,height-1 do
  258. BlockSides()
  259. tryDown()
  260. end
  261. BlockSides()
  262. NewDigDown()
  263. if turtle.down() then
  264. BlockSides()
  265. tryUp()
  266. PlaceBlockDown()
  267. end
  268. if turtle.getItemCount(14) > 0 then
  269. ReturnToBox()
  270. end
  271. end
  272.  
  273.  
  274. --- start
  275. turtle.select(currentSlot)
  276. PlaceBlockUp()
  277. tryForward()
  278. RunSpecial()
  279. tryForward()
  280. for i = 1,length-2 do
  281. print (" Working on row # ", i)
  282. KillIt()
  283. tryForward()
  284. end
  285.  
  286. --- final
  287. KillIt()
  288. -- come back
  289.  
  290. turtle.select(16)
  291. turtle.turnLeft()
  292. turtle.turnLeft()
  293. tryUp()
  294. for i = 1,119 do
  295. tryForward()
  296. if i == 1 then
  297. tryForward()
  298. PlaceBlockDown()
  299. end
  300. torch = torch + 1
  301. if torch > 6 then
  302. PlaceBlockDown()
  303. torch = 0
  304. end
  305. end
  306. tryDown()
  307. turtle.turnLeft()
  308. turtle.turnLeft()
  309. turtle.select(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement