local samp = require('samp.events')
function samp.onServerMessage(_, text)
if text:find('Игрок .-%[ID: %d+%] отблагодарил вас %(%+1 ADMIN COIN%)') then
local id = text:match('Игрок .-%[ID: (%d+)%]')
lua_thread.create(function()
wait(5000)
sampSendChat('/vr ' .. id .. ' <3')
end)
end
end