Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: /disk/startup term.clear() term.setCursorPos(1, 1) -- Those commands will just clear the screen print("Simple Password Door v. 1.0") write("Enter password: ") input = read("*") -- This is the input the user makes password = "ussmcbeef" -- This is the correct password, and can be anything. if input == password then -- […]
↧