Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --APpStore User Profile
- --this script shows the Users Profile, Downloaded Applications, Uploaded Applications, etc
- --this program is for minecraft 1.16.5, CC Tweaked
- local ProfileName = "Guest"
- local ProfileID = nil
- local ProfileState = -1
- local w,h = term.getSize()
- Clear()
- function Clear()
- term.clear()
- term.setCursorPos(1,1)
- end
- function CenterText(y,text)
- local x = math.floor((w - string.len(text)) /2)
- term.setCursorPos(x,y)
- term.clearLine()
- term.write(text)
- end
- function DrawMenu()
- Clear()
- term.setBackground(colors.white")
- print("PROFILE")
- CenterText(3,ProfileName)
- print("this script is WIP")
- print("current plans for the future are:")
- print("1. allow user to login to account from any computer, in any server")
- print("2. Allow user to upload any custom made Applications to a doc to allow")
- print("access from any server")
- print("3. allow the User to Update Already Uploaded Apps")
- print("-----------------------------------------------------------------------")
- print("to exit, please Press e")
- end
- drawMenu()
- while true do
- local event, key = os.pullEvent("key")
- if key == keys.e then
- break
- end
- end
- shell.run("ApertureDL_AppStore")
Add Comment
Please, Sign In to add comment