local ev = require "lib.samp.events"
function main()
while not isSampAvailable() do wait(100) end
sampAddChatMessage('какое-то ахк для /ao', -1)
end
function ev.onServerMessage(color, text)
if text:find('Администратор (.*): Капча на (.*): (.*)') then
nickadm, samakapcha, prize = text:match('Администратор (.*): Капча на (.*): (.*)')
sampSendChat('/vr '..samakapcha)
end
end