Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local direction="north"
- local slotNum=2
- local mc_version=0
- m=peripheral.wrap("front")
- local mc_version=m.isActive or 1
- if mc_version~=1 then
- mc_version=0
- end
- local function checkSlot(slot)
- local itemPresent
- local stackInfo=m.getStackInSlot(slot)
- if stackInfo ~= nil then
- itemPresent=true
- else
- itemPresent=false
- end
- return itemPresent
- end
- function enchantThing(itemAmount)
- while turtle.getItemCount(1)<tonumber(itemAmount) do
- turtle.select(slotNum)
- turtle.transferTo(1)
- turtle.select(1)
- os.sleep(1)
- slotNum=slotNum+1
- if slotNum>16 then slotNum=2 end
- end
- turtle.drop(tonumber(itemAmount))
- os.sleep(1)
- while checkSlot(0+mc_version) do
- print("Waiting for current enchantment to finish.")
- os.sleep(2)
- end
- os.sleep(1)
- while checkSlot(1+mc_version) do
- print("Taking out enchanted things.")
- if mc_version == 1 then
- m.pushItem(direction,2,64)
- else
- m.push(direction,1,64)
- end
- os.sleep(1)
- end
- end
- while 1 do
- shell.run("clear")
- if checkSlot(1+mc_version) then
- print("Emptying output slot.")
- if mc_version > 0 then
- m.pushItem(direction,2,64)
- else
- m.push(direction,1,64)
- end
- end
- while checkSlot(0+mc_version) do
- print("Wait for current enchantment to finish.")
- os.sleep(5)
- if mc_version > 0 then
- m.pushItem(direction,2,64)
- else
- m.push(direction,1,64)
- end
- end
- if mc_version==0 then
- print("Specify amount of books to enchant at once:")
- atOnce=read()
- end
- print("How many enchant attempts?")
- local amount=read()
- for i=1,amount do
- if mc_version>0 then
- enchantThing(1)
- else
- enchantThing(atOnce)
- end
- os.sleep(1)
- end
- print("Done.")
- print("Press any button to reset turtle.")
- os.pullEvent()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement