Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local tank = require("component").tile_blockcapacitorbank_name
- local rs = require("component").redstone
- local term = require("term")
- local a = tank.getEnergyStored()
- local b = tank.getMaxEnergyStored()
- term.clear()
- print("Energy Overview")
- print("")
- print("")
- print("Maximum Stored: "..b)
- print("")
- local function manager()
- term.setCursor(1, 6)
- term.clearLine()
- print("Currently Stored: "..a.." = "..a/b.." %")
- os.sleep(5)
- end
- while true do
- manager()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement