Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Essentia Value
- --Function retrieveData by GamerNebulae from
- --Computed Magic v2.1.3: TT[kami] update, unified version
- --Special thanks to flaghacker for helping me with updating the code
- --Declaring variables: All local variables cannot be used in other programs!
- local jarData = {}
- local jarDataIndex
- local peripheralData = {}
- --Functions:
- --Retrieve data from the jars
- local function retrieveData()
- --Retrieving which aspects you have and how much is in those jars and getting information from storage system
- peripheralData["jar"] = {}
- for index, peripheralName in pairs(peripheral.getNames()) do
- if (peripheralName:find("tt_aspectContainer") or peripheralName:find("tilejar")) then
- if (type(peripheral.call(peripheralName, "getAspects")) == "table") then
- if (not peripheralData["jar"][string.lower(peripheral.call(peripheralName, "getAspects")[1]["name"])]) then
- peripheralData["jar"][string.lower(peripheral.call(peripheralName, "getAspects")[1]["name"])] = {}
- end
- peripheralData["jar"][string.lower(peripheral.call(peripheralName, "getAspects")[1]["name"])][#peripheralData["jar"][string.lower(peripheral.call(peripheralName, "getAspects")[1]["name"])] + 1] = peripheralName
- else
- if (not peripheralData["jar"][string.lower(peripheral.call(peripheralName, "getAspects"))]) then
- peripheralData["jar"][string.lower(peripheral.call(peripheralName, "getAspects"))] = {}
- end
- peripheralData["jar"][string.lower(peripheral.call(peripheralName, "getAspects"))][#peripheralData["jar"][string.lower(peripheral.call(peripheralName, "getAspects"))] + 1] = peripheralName
- end
- end
- end
- end
- function onMonitor()
- m = peripheral.wrap("left")
- m.clear()
- local currentJarNum = 0
- local currentX
- local currentY
- local quantity
- for k,v in pairs(peripheralData) do
- --Setting the x position on monitor
- if currentJarNum<17 then
- currentX = 1
- elseif currentJarNum<34 then
- currentX = 16
- else
- currentX = 31
- end
- --Setting the y position on monitor
- currentY = currentJarNum%17 + 1
- quantity = math.floor(peripheralData[k][1])
- --Setting write color based on the quantity of essentia
- if quantity < 20 then
- m.setTextColor(colors.red)
- elseif quantity > 40 then
- m.setTextColor(colors.green)
- else
- m.setTextColor(colors.yellow)
- end
- m.setCursorPos(currentX, currentY)
- m.write(k)
- if quantity < 10 then
- currentX = currentX + 1
- end
- m.setCursorPos(currentX + 12, currentY)
- m.write(tostring(quantity))
- currentJarNum = currentJarNum + 1
- end
- end
- --Start
- retrieveData()
- onMonitor()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement