Advertisement
TIMAS_Bro

Chests

Feb 1st, 2024 (edited)
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.45 KB | None | 0 0
  1. local chests = {{"25",{"58","59","60","61","62"}}, {"back",{"63","64","65","66","67"}}, {"26",{"68","69","70","71","72"}}}
  2. local mn = peripheral.find("monitor")
  3. local sx, sy = mn.getSize()
  4. local cPear = nil
  5.  
  6. local function list_chest(out, chest)
  7.     local funcs = {}
  8.     for i = 1, peripheral.call(chest, "size"), 1 do
  9.         local function _1_()
  10.             out[i] = peripheral.call(chest, "getItemDetail", i)
  11.             return nil
  12.         end
  13.         table.insert(funcs, _1_)
  14.     end
  15.     return table.unpack(funcs)
  16. end
  17. local count = 0
  18. local x = 1
  19. local list = {}
  20.  
  21. while true do
  22.     mn.setBackgroundColor(colors.black)
  23.     mn.clear()
  24.     for _, pair in pairs(chests) do
  25.       x = 1
  26.       if pair[1] == "back" then
  27.         mn = peripheral.wrap(pair[1])
  28.       else
  29.         mn = peripheral.wrap("monitor_"..pair[1])
  30.       end
  31.       for _, chest in pairs(pair[2]) do
  32.           cPer = peripheral.wrap("minecraft:chest_"..chest)
  33.           mn.setCursorPos(x,2)
  34.           mn.write("Stock:")
  35.           count = 0
  36.           llist = {}
  37.           parallel.waitForAll(list_chest(list, peripheral.getName(cPer)))
  38.           for __, item in pairs(list) do
  39.             if item then
  40.                 count = count + item.count
  41.             end
  42.           end
  43.           mn.setCursorPos(x,3)
  44.           mn.write(count)
  45.           mn.setCursorPos(x,4)
  46.           mn.write("/"..cPer.size()*64)
  47.           for i=1,sx do
  48.             mn.setCursorPos(i,1)
  49.             mn.write("-")
  50.           end
  51.           x = x + 11
  52.           for i=1,sy do
  53.             mn.setCursorPos(x-2,i)
  54.             mn.write("|")
  55.           end
  56.          
  57.         end
  58.     end
  59.     sleep(10    )
  60. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement