Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. term.clear()
  2. term.setCursorPos(1,1)
  3. password = "4Good"
  4. inverted = false
  5. side = "left"
  6. opentime = 5
  7.  
  8.  
  9. rs.setOutput(side,inverted)
  10. write("Password: ")
  11. input = read("*")
  12. if input == password then
  13.     if inverted == true then
  14.         print("Access granted")
  15.         rs.setOutput(side, false)
  16.         sleep(opentime)
  17.         os.reboot()
  18.     else
  19.         print("Access granted")
  20.         rs.setOutput(side, true)
  21.         sleep(opentime)
  22.         os.reboot()
  23.     end
  24. elseif input == "goodchoys" then
  25.     print("Exiting program..")
  26.     sleep(2)
  27. else
  28.     print("Access denied")
  29.     sleep(3)
  30.     os.reboot()
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement