detectids.lua

12 lines · 224 B

Open raw

Copy & run

wget https://perlytiara.github.io/turtles.tips/raw/programs/BigGamingGamers/detectids.lua
1local SLOT_COUNT = 16
2
3function 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
10end
11
12dropItems()