Advertisement
Guest User

Password Enabled Door Switch

a guest
Aug 14th, 2013
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.85 KB | None | 0 0
  1. --[[    Password Enabled Door Switch
  2.     Function:   Receives input to open or close door
  3.                 and remains in resulting state
  4.                 until nexy input.
  5.             Also receives input to reboot computer.
  6.             No local variables.
  7.   ]]--
  8.  
  9. os.pullEvent = os.pullEventRaw --Avoid termination
  10.  
  11. while true do --Keep it running always
  12.    
  13.     term.clear() --Clear the screen
  14.    
  15.     term.setCursorPos(1, 1) --Reset cursor to top left
  16.     print("Password:") --Prompt user
  17.    
  18.     input = read("*") --Hide input with stars
  19.    
  20.     if input == "123" then
  21.         redstone.setOutput("right", true) --Open Door
  22.        
  23.     elseif input == "qwe" then
  24.         redstone.setOutput("right", false) --Close Door
  25.        
  26.     elseif input == "asd" then --For easy code updating
  27.         term.clear()
  28.         term.setCursorPos(1, 1)
  29.         print("Rebooting...")
  30.         sleep(2)
  31.         os.reboot() --Reboot OS
  32.    
  33.     end --End if statement
  34.  
  35. end --End while loop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement