ComputerCraft + Applied Energistics: get list of items and their count« Wróć do listy pytań
ComputerCraft + Applied Energistics: get list of items and their count
|
▲ ▼ |
lp = peripheral.wrap("back") list = lp.getAvailableItems() for number, item in pairs(list) do print(item.fingerprint.id..","..item.size) sleep(0.5) end |