Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- for j = 5,16 do
- turtle.select(j)
- local dropItem = true
- for i = 1,4 do
- -- compare to good
- if turtle.compareTo(j) then
- -- drop all trash
- dropItem = false
- end
- end
- if dropItem then
- turtle.dropDown()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement