Advertisement
Guest User

password

a guest
Feb 25th, 2013
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.88 KB | None | 0 0
  1. term.clear()
  2. term.setCursorPos(1,1)
  3. password = "zxcvbnm"
  4. print"Holcombeshost OS 0.01"
  5. textutils.slowPrint("Booting into secure password lock system 0.01")
  6. textutiles.slowPrint("[************************************************]")
  7. print"Booted into Holcombeshost secure password lock"
  8. sleep(3)
  9. input = read("*")
  10. write"Password: "
  11. if input == password then
  12. textutils.slowPrint("Verifying password...")
  13. textutils.slowPrint("Password was correct")
  14. print"You now have access thru the door for 3 secconds"
  15. rs.setOutput("bottom",true)
  16. sleep(3)
  17. rs.setOutput("bottom",false)
  18. os.shutdown()
  19. else
  20. textutils.slowPrint("Veriying password...")
  21. textutils.slowPrint("Password was incorrect")
  22. print"System will now log time, date and user"
  23. textutils.slowPrint("[*************************************************]")
  24. print"Logged"
  25. print"System will now shutdown"
  26. sleep(3)
  27. os.shutdown()
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement