if CLIENT then
local i = 0
local delay = 300 -- Здесь задержка твоего адверта
local texts = {
{Color(255, 0, 0), 'Реклама #1'}
{Color(0, 255, 0), 'Реклама #2'}
{Color(0, 0, 255), 'Реклама #3'}
}
timer.Create('TimeAdv', delay, 0, function()
i = i + 1
if (not texts[i]) then
i = 1
end
local col = texts[i][1]
local msg = texts[i][2]
msg = msg:gsub("{(.+)}", function(s)
return info[s] or s
end)
chat.AddText(col, msg)
end)
end