Logo Pastebin.fr
Pastebin

Retrouvez, créez et partagez vos snippets en temps réel.

InventoryManagement

local counts = {}

for slot = 1, 16 do
  local detail = turtle.getItemDetail(slot)
  if detail then
    local name = detail.name
    local count = turtle.getItemCount(slot)
    counts[name] = (counts[name] or 0) + count
  end
end

Créé il y a 2 semaines.

Rechercher un Pastebin

Aucun paste trouvé.