Advertisement
BigGamingGamers

detectIDS

Nov 10th, 2020 (edited)
2,541
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. local SLOT_COUNT = 16
  2.  
  3. function dropItems()
  4. for slot = 1, SLOT_COUNT, 1 do
  5. local item = turtle.getItemDetail(slot)
  6. if(item ~= nil) then
  7. print(item["name"])
  8. end
  9. end
  10. end
  11.  
  12. dropItems()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement