Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- os.pullEvent = os.pullEventRaw
- function main()
- while true do
- term.clear()
- term.setCursorPos(1,1)
- print("New World Industries Software:")
- print("Password Lock V4")
- print("")
- print("NWI Door Console")
- print("")
- print("1- Open Door")
- print("2- Debug")
- event, param1, param2, param3 = os.pullEvent()
- if event == "char" and param1 == "1" then failsafe1() end
- if event == "char" and param1 == "2" then debug() end
- end
- end
- function failsafe1()
- for lock = 3, 0, -1 do
- if lock == "0" then
- term.clear()
- term.setCursorPos(1,1)
- print("Out of Attempts! Please wait 60 seconds!")
- sleep(60)
- break
- else
- open()
- end
- end
- end
- function open()
- term.clear()
- term.setCursorPos(1,1)
- print("Attempts Remaining: ")
- print(lock)
- local password = "48393343"
- write("Insert Password:")
- local input = read("*")
- if input == (password) then
- term.clear()
- term.setCursorPos(1,1)
- print("Password Accepted")
- sleep(1)
- rs.setOutput("left", true)
- sleep(3)
- rs.setOutput("left", false)
- sleep(1)
- else
- term.clear()
- term.setCursorPos(1,1)
- print("Password Denied!")
- sleep(2)
- end
- end
- function debug()
- term.clear()
- term.setCursorPos(1,1)
- local password = "48393343"
- write("Insert Password:")
- local input = read("*")
- if input == (password) then exit()
- else
- term.clear()
- term.setCursorPos(1,1)
- print("Password Denied")
- sleep(2)
- end
- end
- main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement