function randomskin()
newTask(function()
math.randomseed(os.clock())
local skin = math.random(1, 10)
for i = 1, skin do
sendClickTextdraw(520)
wait(100)
end
sendClickTextdraw(521)
end)
end
function sampev.onShowDialog(id, style, title, btn1, btn2, text)
if title:find('1/4') then
sendDialogResponse(id, 1, 0, cfg.settings.randompass == 0 and cfg.settings.pass or generatepass())
return false
elseif title:find('2/4') or title:find('3/4') then
sendDialogResponse(id, 1, math.random(0, 1), '')
return false
elseif title:find('Откуда вы о нас узнали?') then
sendDialogResponse(id, 1, 1, '')...