Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.50 KB | None | 0 0
  1. --[[
  2. Automatic Unstable ingot crafting
  3. by Mumberthrax
  4. license: cc-by-sa
  5.  
  6.  
  7. vervion 1.1: fixed a derp up in shovel/wand crafting. forgot an "if"
  8.  
  9. ---------------
  10.  
  11. For best results, use with a
  12. crafting station, a PIM, and some
  13. method of item transfer from PIM to
  14. turtle (e.g. transfer node)
  15. * comment out undesired section
  16. * uncomment desired section
  17. * save
  18. * fill turtle crafting grid appropriately
  19. * run program
  20. * place sigil, diamond, and iron into
  21. crafting station - only put as many
  22. dia/iron as you need
  23. * stand on PIM
  24. * shift-click on unstable ingots
  25. * ???
  26. * profit
  27. ---------------------------------
  28. Table of contents:
  29. * sword
  30. * pickaxe
  31. * axe
  32. * shovel / builder's wand
  33. * hoe
  34. * portal to the deep dark
  35. * ethereal glass
  36. * sonar goggles
  37. * block
  38. --]]
  39. --[[
  40. -- Sword
  41. -- place stick in 2nd column 3rd row
  42. while true do
  43. if turtle.getItemCount(2)==1 then
  44. turtle.select(1)
  45. turtle.transferTo(6)
  46. turtle.craft()
  47. end
  48. sleep(1)
  49. end
  50. --]]
  51. --[[
  52. -- Pickaxe
  53. -- place stick in column 2 rows 2&3
  54. while true do
  55. if turtle.getItemCount(3)==1 then
  56. turtle.craft()
  57. end
  58. sleep(1)
  59. end
  60. --]]
  61. --[[
  62. -- axe
  63. -- place stick in column 2 rows 2&3
  64. while true do
  65. if turtle.getItemCount(3)==1 then
  66. turtle.select(3)
  67. turtle.transferTo(5)
  68. turtle.craft()
  69. end
  70. sleep(1)
  71. end
  72. --]]
  73. --[[
  74. -- shovel / wand
  75. -- put sticks in turtle, column 1
  76. -- row 2&3 for shovel
  77. -- just row 2 for wand
  78. while true do
  79. if turtle.getItemCount(1)==1 then
  80. turtle.craft()
  81. end
  82. sleep(1)
  83. end
  84. --]]
  85. --[[
  86. -- hoe
  87. -- place stick in column 2 rows 2&3
  88. while true do
  89. if turtle.getItemCount(2)==1 then
  90. turtle.craft()
  91. end
  92. sleep(1)
  93. end
  94. --]]
  95. --[[
  96. -- Portale to the Deep Dark
  97. -- place triple compressed cobble and
  98. -- quadruple compressed cobble in
  99. -- appropriate spots in turtle
  100. while true do
  101. if turtle.getItemCount(7)==1 then
  102. turtle.select(4)
  103. turtle.transferTo(10)
  104. turtle.craft()
  105. end
  106. sleep(1)
  107. end
  108. --]]
  109. --[[
  110. -- Ethereal Glass
  111. -- place crafting ingredients in
  112. -- appropriate spots in turtle
  113. while true do
  114. if turtle.getItemCount(4)==1 then
  115. turtle.select(4)
  116. turtle.transferTo(6)
  117. turtle.craft()
  118. end
  119. sleep(1)
  120. end
  121. --]]
  122. --[[
  123. -- Sonar Goggles
  124. -- place ingredients in turtle in
  125. -- apporpriate spots
  126. while true do
  127. if turtle.getItemCount(4)==1 then
  128. turtle.select(4)
  129. turtle.transferTo(6)
  130. turtle.craft()
  131. end
  132. sleep(1)
  133. end
  134. --]]
  135. --[[
  136. -- Unstable block
  137. while true do
  138. if turtle.getItemCount(9)==1 then
  139. turtle.select(4)
  140. turtle.transferTo(10)
  141. turtle.select(8)
  142. turtle.transferTo(11)
  143. turtle.craft()
  144. end
  145. sleep(1)
  146. end
  147. --]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement