Advertisement
Farrk

MFRAutoEnchanter_1.5.2&1.6.4

Dec 18th, 2013
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. local direction="north"
  2. local slotNum=2
  3. local mc_version=0
  4. m=peripheral.wrap("front")
  5. local mc_version=m.isActive or 1
  6. if mc_version~=1 then
  7. mc_version=0
  8. end
  9. local function checkSlot(slot)
  10. local itemPresent
  11. local stackInfo=m.getStackInSlot(slot)
  12. if stackInfo ~= nil then
  13. itemPresent=true
  14. else
  15. itemPresent=false
  16. end
  17. return itemPresent
  18. end
  19.  
  20. function enchantThing(itemAmount)
  21. while turtle.getItemCount(1)<tonumber(itemAmount) do
  22. turtle.select(slotNum)
  23. turtle.transferTo(1)
  24. turtle.select(1)
  25. os.sleep(1)
  26. slotNum=slotNum+1
  27. if slotNum>16 then slotNum=2 end
  28. end
  29.  
  30. turtle.drop(tonumber(itemAmount))
  31. os.sleep(1)
  32.  
  33. while checkSlot(0+mc_version) do
  34. print("Waiting for current enchantment to finish.")
  35. os.sleep(2)
  36. end
  37.  
  38. os.sleep(1)
  39. while checkSlot(1+mc_version) do
  40. print("Taking out enchanted things.")
  41. if mc_version == 1 then
  42. m.pushItem(direction,2,64)
  43. else
  44. m.push(direction,1,64)
  45. end
  46. os.sleep(1)
  47. end
  48. end
  49.  
  50. while 1 do
  51. shell.run("clear")
  52. if checkSlot(1+mc_version) then
  53. print("Emptying output slot.")
  54. if mc_version > 0 then
  55. m.pushItem(direction,2,64)
  56. else
  57. m.push(direction,1,64)
  58. end
  59. end
  60. while checkSlot(0+mc_version) do
  61. print("Wait for current enchantment to finish.")
  62. os.sleep(5)
  63. if mc_version > 0 then
  64. m.pushItem(direction,2,64)
  65. else
  66. m.push(direction,1,64)
  67. end
  68. end
  69. if mc_version==0 then
  70. print("Specify amount of books to enchant at once:")
  71. atOnce=read()
  72. end
  73. print("How many enchant attempts?")
  74. local amount=read()
  75.  
  76. for i=1,amount do
  77. if mc_version>0 then
  78. enchantThing(1)
  79. else
  80. enchantThing(atOnce)
  81. end
  82. os.sleep(1)
  83. end
  84. print("Done.")
  85. print("Press any button to reset turtle.")
  86. os.pullEvent()
  87. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement