Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- while true do
- local count = 0
- for i=1,9 do
- count = count + turtle.getItemCount(i)
- end
- print(count)
- if count==576 then
- print("action")
- redstone.setOutput("front",true)
- for j=1,9 do
- turtle.select(j)
- turtle.drop(63)
- end
- sleep(10)
- redstone.setOutput("front",false)
- end
- sleep(10)
- end
Advertisement
Add Comment
Please, Sign In to add comment