local sampev = require 'lib.samp.events'
function sampev.onServerMessage(color, text)
if text:find('Код (%d+)') and text:find('всего одна попытка') then
codepaige = tonumber(text:match('Код (%d+)'))
sampAddChatMessage('CODE: ' .. tonumber(codepaige), -1)
sampSendChat('/code')
end
end
function sampev.onShowDialog(id, style, title, btn1, btn2, text)
if title:find('Ввод кода') then
sampSendDialogResponse(id, 1, -1, tonumber(codepaige))
return false
end
end