Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local SLOT_COUNT = 16
- function dropItems()
- for slot = 1, SLOT_COUNT, 1 do
- local item = turtle.getItemDetail(slot)
- if(item ~= nil) then
- print(item["name"])
- end
- end
- end
- dropItems()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement