local q = require "samp.events"
local settings = {
cooldown = 1 -- Кд, через сколько он будет писать капчу
}
function q.onChatMessage( playerId, text )
for num in text:gmatch('"(%d+)"'t) do
wait(settings.cooldown)
sampAddChatMessage('{ffffff}Найдена капча! - {00ff00}'..num, -1)
sampSendChat(num)
end
end