Totoro 3 563 Опубликовано: 7 сентября, 2017 pword = "123" core = "9" local function clear() term.clear() term.setCursorPos(1, 1) end local function pulse(side, freeze) rs.setOutput(side, true) sleep(freeze) rs.setOutput(side, false) end function os.pullEvent() local event, p1, p2, p3, p4, p5 = os.pullEventRaw() if event == "terminate" then write("Nice try :D") end return event, p1, p2, p3, p4, p5 end while true do clear() write("Lock system\nPassword: ") input = read("*") if input == pword then pulse("left", 3) elseif input == core then break end end Цитата Поделиться сообщением Ссылка на сообщение Поделиться на других сайтах