Advertisement
SkyCrafter0

Quintuple Password Lua 1.0

Dec 3rd, 2017
397
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. os.pullEvent = os.pullEventRaw
  2. while true do
  3.         term.clear()
  4.         term.setCursorPos(1,1)
  5.         term.write("Password:")
  6.         local password = read()
  7.        
  8.         if password == "passwordmain" then
  9.                 shell.run("ID")
  10.         elseif password == "passwordsecondary" then
  11.                 shell.run("ID")
  12.         elseif password == "passwordtertiary" then
  13.                 shell.run("ID")
  14.         elseif password == "passwordquarternary" then
  15.                 shell.run("ID")
  16.         elseif password == "passwordquinary" then
  17.                 shell.run("ID")
  18.         else
  19.                 term.write("Incorrect.Rebooting")
  20.                 sleep(5)
  21.                 os.reboot()
  22.         end
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement