Advertisement
fatboychummy

Turtle inventory lister

Feb 21st, 2025
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.12 KB | None | 0 0
  1. for i = 1, 16 do
  2.   local detail = turtle.getItemDetail(i)
  3.   if detail then
  4.     print(i, ":", detail.name)
  5.   end
  6. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement