Advertisement
Guest User

startup

a guest
Jun 23rd, 2013
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.34 KB | None | 0 0
  1. os.pullEvent = os.pullEventRaw
  2. function main()
  3. while true do
  4. term.clear()
  5. term.setCursorPos(1,1)
  6. print("New World Industries Software:")
  7. print("Password Lock V4")
  8. print("")
  9. print("NWI Door Console")
  10. print("")
  11. print("1- Open Door")
  12. print("2- Debug")
  13. event, param1, param2, param3 = os.pullEvent()
  14. if event == "char" and param1 == "1" then failsafe1() end
  15. if event == "char" and param1 == "2" then debug() end
  16. end
  17. end
  18.  
  19. function failsafe1()
  20. for  lock = 3, 0, -1 do
  21. if lock == "0" then
  22. term.clear()
  23. term.setCursorPos(1,1)
  24. print("Out of Attempts! Please wait 60 seconds!")
  25. sleep(60)
  26. break
  27. else
  28. open()
  29. end
  30. end
  31. end
  32.  
  33. function open()
  34. term.clear()
  35. term.setCursorPos(1,1)
  36. print("Attempts Remaining: ")
  37. print(lock)
  38. local password = "48393343"
  39. write("Insert Password:")
  40. local input = read("*")
  41. if input == (password) then
  42. term.clear()
  43. term.setCursorPos(1,1)
  44. print("Password Accepted")
  45. sleep(1)
  46. rs.setOutput("left", true)
  47. sleep(3)
  48. rs.setOutput("left", false)
  49. sleep(1)
  50. else
  51. term.clear()
  52. term.setCursorPos(1,1)
  53. print("Password Denied!")
  54. sleep(2)
  55. end
  56. end
  57.  
  58. function debug()
  59. term.clear()
  60. term.setCursorPos(1,1)
  61. local password = "48393343"
  62. write("Insert Password:")
  63. local input = read("*")
  64. if input == (password) then exit()
  65. else
  66. term.clear()
  67. term.setCursorPos(1,1)
  68. print("Password Denied")
  69. sleep(2)
  70. end
  71. end
  72.  
  73. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement