function main()
if not isSampLoaded() or not isSampfuncsLoaded() then
return
end
while not isSampAvailable() do
wait(100)
end
while true do
wait(0)
if sampIsDialogActive() and sampGetDialogCaption():find('Проверка на робота') then
ttime = os.clock()
while sampIsDialogActive() do
wait(1)
end
sampAddChatMessage(string.format("{FF5656}[Таймер ловли]{FFFFFF} Твоя капча была: {FB8900}%s. {ffffff}Вы ввели за: {FB8900}%s {ffffff}секунд!", sampGetCurrentDialogEditboxText(), string.sub(os.clock() - ttime, 1, 5)), 16777215)
end
end
end