function ev.onShowDialog(dialogId, dialogStyle, dialogTitle, okButtonText, cancelButtonText, dialogText)
if dialogText:find('Через личное сообщение') then
VkMessage('🐩 При входе запрошено подтверждение через VK-Guard.')
end
if dialogId == 2 then
sendDialogResponse(2, 1, -1, account_password)
return false
end
local ntext = dialogText:gsub('{......}', '')
if dialogId == 235 and style == 0 then
for line in ntext:gmatch("[^\r\n]+") do
if line:find('^Имя: %[.+%]$') then
statnick = line:match('^Имя: %[(.+)%]$')
elseif line:find('^Уровень: %[d+%] ') then
statlvl = line:match('^Уровень: %[d+%]$')
elseif line:find('^Наличные деньги (SA$): %[$d+%]$') then
statnal = line:match('^Наличные деньги (SA$): %[$d+%]$')
elseif line:find('^Евро: %[d+%]$') then
statevr = line:match('^Евро: %[d+%]$')
end
end
for i=1, #stats do
str = str..stats[i]..'\n'
end
VkMessage('🕵 Ник: '..statnick..'\n⏳ Уровень: '..statlvl..'\n💰 Деньги: '..statnal..'\n💶 Евро: '..statevr)
return false
end
end