Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- while true do
- for inv=1,16 do
- local count = turtle.getItemCount(inv)
- while ( count >= 9 ) do
- turtle.select(inv)
- while ( turtle.drop(9) == false ) do os.sleep(2) end
- count = turtle.getItemCount(inv)
- end
- end
- os.sleep(10)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement