Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --this script acts as the Base User system, which allows the user to interact with scripts, see files, etc. this version is a skeleton version, meaning it only has the bare minimum required for the User to interact with the OS
- version = "1.0.0"
- local Address = "n"
- local ScreenWidth, ScreenHeight = term.getSize()
- local OSVersion = "1.0.0"
- local function Clear()
- term.clear()
- term.setCursorPos(1,1)
- end
- local function LoadAddress()
- Clear()
- if Address == "n" then
- term.setBackgroundColor(colors.blue)
- paintutils.drawFilledBox(1,ScreenHeight-ScreenHeight/10,ScreenWidth,ScreenHeight,colors.gray)
- term.setCursorPos(1,1)
- term.setTextColor(colors.white)
- term.write("Gem OS version "..OSVersion)
- else
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement