Advertisement
creepy1775

Password door lock

Jul 19th, 2014
486
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.60 KB | None | 0 0
  1. repeat
  2.  local e = 4
  3.     repeat
  4.        shell.run("clear")
  5.         print("Password ?")
  6.         local mdp = read("*")
  7.          if mdp == ("admin") then
  8.           e = 4
  9.           print("Acces granted")
  10.             redstone.setOutput("top",true)
  11.               sleep(5)
  12.                redstone.setOutput("top",false)
  13.                 shell.run("clear")             
  14.         else
  15.            e = e - 1
  16.           shell.run("clear")
  17.          print("Try remaining : "..e)
  18.         sleep(2)     
  19.        end     
  20.     until e < 1
  21.            shell.run("clear")
  22.           print("Computer locked for 25 sec")
  23.      sleep(25)
  24.  until e > 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement