Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local chests = {{"25",{"58","59","60","61","62"}}, {"back",{"63","64","65","66","67"}}, {"26",{"68","69","70","71","72"}}}
- local mn = peripheral.find("monitor")
- local sx, sy = mn.getSize()
- local cPear = nil
- local function list_chest(out, chest)
- local funcs = {}
- for i = 1, peripheral.call(chest, "size"), 1 do
- local function _1_()
- out[i] = peripheral.call(chest, "getItemDetail", i)
- return nil
- end
- table.insert(funcs, _1_)
- end
- return table.unpack(funcs)
- end
- local count = 0
- local x = 1
- local list = {}
- while true do
- mn.setBackgroundColor(colors.black)
- mn.clear()
- for _, pair in pairs(chests) do
- x = 1
- if pair[1] == "back" then
- mn = peripheral.wrap(pair[1])
- else
- mn = peripheral.wrap("monitor_"..pair[1])
- end
- for _, chest in pairs(pair[2]) do
- cPer = peripheral.wrap("minecraft:chest_"..chest)
- mn.setCursorPos(x,2)
- mn.write("Stock:")
- count = 0
- llist = {}
- parallel.waitForAll(list_chest(list, peripheral.getName(cPer)))
- for __, item in pairs(list) do
- if item then
- count = count + item.count
- end
- end
- mn.setCursorPos(x,3)
- mn.write(count)
- mn.setCursorPos(x,4)
- mn.write("/"..cPer.size()*64)
- for i=1,sx do
- mn.setCursorPos(i,1)
- mn.write("-")
- end
- x = x + 11
- for i=1,sy do
- mn.setCursorPos(x-2,i)
- mn.write("|")
- end
- end
- end
- sleep(10 )
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement