Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local computer = require("computer")
- local var1 = computer.address()
- local var2 = computer.tmpAddress()
- local var3 = computer.freeMemory()
- local var4 = computer.totalMemory()
- local var5 = computer.energy()
- local var6 = computer.maxEnergy()
- local var7 = computer.uptime()
- local var8 = computer.getBootAddress()
- local var9 = computer.users()
- print("Computer Address: " .. var1)
- print("TmpFS Address: " .. var2)
- print("Memory Available: " .. var3)
- print("Memory Installed: " .. var4)
- print("Voltage: " .. var5)
- print("Maximum Voltage: " .. var6)
- print("Computer Uptime: " .. var7)
- print("BootFS Address: " .. var8)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement