Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Najde a připojí Inventory System Connector
- local isc = peripheral.find("logisticspipes:inventory_system_connector")
- if isc == nil then
- print("Nepodařilo se najít Inventory System Connector.")
- return
- end
- -- Získá seznam položek a množství
- local items = isc.getItems()
- -- Vypíše seznam položek a množství
- for _, item in pairs(items) do
- print(item.name .. ": " .. item.amount)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement