Blutonium

                Never    
Lua
       
---Compress Cobble

event, id, text = os.pullEvent() 


local delayBetweemCrafting = 3
gotCobble = false
local craftSquaresList = {1,2,3, 5,7, 9,10,11}
while(true) do
	for i=1, 8 do
		turtle.select(craftSquaresList[i])
		while(not turtle.suck(1)) do
			print("Waiting for inventory.")
			if redstone.getInput("top") then 
				break
			end
			sleep(delayBetweenCrafting)
		end
		print("Item placed in slot: " .. craftSquaresList[i])
	end
	
	turtle.select(16)
	turtle.craft()
	
	turtle.turnRight()
	turtle.turnRight()

	turtle.drop(1)

	turtle.turnRight()
	turtle.turnRight()
	
	sleep(delayBetweemCrafting)
end

Raw Text