Advertisement
jirkaCraft

dvere

Aug 27th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.71 KB | None | 0 0
  1. term.clear()
  2. term.setCursorPos(1,1)
  3. password = "technik"
  4. inverted = false
  5. side = "bottom"
  6. opentime = 5
  7.  
  8.  
  9. rs.setOutput(side,inverted)
  10. write("Heslo: ")
  11. input = read("*")
  12. if input == password then
  13.         if inverted == true then
  14.                 print("Pristup povolen")
  15.                 rs.setOutput(side, false)
  16.                 sleep(opentime)
  17.                 os.reboot()
  18.         else
  19.                 print("Pristup povolen")
  20.                 rs.setOutput(side, true)
  21.                 sleep(opentime)
  22.                 os.reboot()
  23.         end
  24. elseif input == "nwm" then
  25.         print("Vypínám se..")
  26.         sleep(2)
  27. else
  28.         print("Pristup odepren")
  29.         sleep(3)
  30.         os.reboot()
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement