events = require 'samp.events'
function events.onServerMessage(color, text)
for k,v in pairs({
'еблан',
'dolboen'
}) do
if text:find(v) then
if text:find("%- (.+) %(%S+)%[(%d+)%]%)") then
local nick, id, message = text:match("%- (.+) %(%S+)%[(%d+)%]%)")
print(id)
sampAddChatMessage(tostring(id), 0xFFFF00)
end
end
end