detectids.lua
12 lines · 224 B
Copy & run
wget https://perlytiara.github.io/turtles.tips/raw/programs/BigGamingGamers/detectids.lua
| 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() |