Advertisement
Guest User

util

a guest
Aug 27th, 2015
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.92 KB | None | 0 0
  1. --os.loadAPI("encryption") Encryption will be added in a later version, see setup comments
  2. --local password = "************" -- NOW OBSELETE
  3. local temp = os.pullEvent
  4. os.pullEvent = os.pullEventRaw
  5. local filename = 'password'
  6. local userfile = fs.open(filename, 'r')
  7. local password = userfile.readLine()
  8. --local encryptedPass = userfile.readLine()
  9. --local decryptedPass = encryption.decrypt("decryptedPass",encryptedPass.."iqAzT5eG")
  10. local cmdpass = "unlock"
  11. local cmdstop = "shutdown"
  12. local cmdhelp = "help"
  13. local cmdedit = "edit"
  14. local cmdabout = "about"
  15.  
  16. function redrawGUI()
  17.   term.clear()
  18.   term.setTextColour(colours.yellow)
  19.   term.setCursorPos(1,1)
  20.   term.write("CraftOS 1.7 [LOCKED]")
  21.   term.setCursorPos(1,2)
  22.   term.write("> ")
  23.   getInputCommand()
  24. end
  25.  
  26. function getInputCommand()
  27.   local input = read()
  28.   if input == cmdstop then
  29.     os.shutdown()
  30.   elseif input == cmdpass then
  31.     local passcode = read("*")
  32.     if passcode == password then
  33.       term.clear()
  34.       term.setCursorPos(1,1)
  35.       shell.run("rom/programs/shell")
  36.     else
  37.       term.setTextColour(colours.red)
  38.       term.setCursorPos(1,5)
  39.       term.write("Incorrect Password.")
  40.       sleep(1)
  41.       term.clear()
  42.       redrawGUI()
  43.     end
  44.   elseif input == cmdhelp then
  45.     term.setCursorPos(1,4)
  46.     term.setTextColour(colours.white)
  47.     term.write("Command list (Page 1 of 1)")
  48.     term.setCursorPos(1,5)
  49.     term.setTextColour(colours.lime)
  50.     term.write("shutdown - Shuts down the computer")
  51.     term.setCursorPos(1,6)
  52.     term.write("unlock - Unlocks the computer")
  53.     term.setCursorPos(1,7)
  54.     term.write("edit - You do not have access to this command")
  55.     term.setCursorPos(1,8)
  56.     term.write("help - Displays a list of commands")
  57.     term.setCursorPos(1,9)
  58.     term.write("about - About this utility")
  59.     sleep(5)
  60.     redrawGUI()
  61.   elseif input == cmdedit then
  62.     term.setCursorPos(1,4)
  63.     term.setTextColour(colours.red)
  64.     term.write("Usage: edit")
  65.     sleep(2)
  66.     redrawGUI()
  67.   elseif input == cmdabout then
  68.     term.setCursorPos(1,4)
  69.     term.setTextColour(colours.white)
  70.     term.write("Utility by ")
  71.     term.setTextColour(colours.red)
  72.     term.write("Y")
  73.     sleep(0.05)
  74.     term.setTextColour(colours.orange)
  75.     term.write("ou")
  76.     sleep(0.05)
  77.     term.setTextColour(colours.yellow)
  78.     term.write("r")
  79.     sleep(0.05)
  80.     term.setTextColour(colours.lime)
  81.     term.write("MC")
  82.     sleep(0.05)
  83.     term.setTextColour(colours.lightBlue)
  84.     term.write("Inf")
  85.     sleep(0.1)
  86.     term.setTextColour(colours.blue)
  87.     term.write("orm")
  88.     sleep(0.075)
  89.     term.setTextColour(colours.purple)
  90.     term.write("er")
  91.     sleep(0.1)
  92.     term.setTextColour(colours.white)
  93.     term.write(".")
  94.     sleep(1.5)
  95.     redrawGUI()
  96.   else
  97.     term.setTextColour(colours.red)
  98.     term.setCursorPos(1,3)
  99.     term.write("Unknown command. Type 'help' for help")
  100.     sleep(2)
  101.     redrawGUI()
  102.   end
  103. end
  104.  
  105. redrawGUI()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement