local sampev = require("samp.events")
local font = renderCreateFont("Arial", 10, 13)
local hui = {}
function sampev.onServerMessage(color, text)
local test = "хуй"
if text:find(test) then
table.insert(hui, test)
end
end
function main()
repeat wait(0) until isSampAvailable()
while true do wait(0)
local sx, sy = getScreenResolution()
for i = 1, #hui do
renderFontDrawText(font, hui[i], sx / 2, sy / 2, -1)
end
end
end