Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Lock system
- print("Welcome to Kristian's terminal");
- print("Enter the password to continue: ");
- sRealPassword = "nexusrocks";
- sSymbol = "*";
- sInput = read(sSymbol);
- if (sRealPassword == sInput) then
- print("You are in");
- redstone.setOutput("left", true);
- sleep(5);
- redstone.setOutput("left", false);
- os.reboot()
- else
- print("Incorrect password");
- os.reboot()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement