local torepeat = {"ты","гей",}
local next_say = 0
local idx_phrase = 1
Cheat.RegisterCallback("draw",function()
local tickcount = GlobalVars.tickcount
if tickcount < next_say then return end
if idx_phrase > #torepeat then idx_phrase = 1 end
EngineClient.ExecuteClientCmd("say "..torepeat[idx_phrase])
idx_phrase = idx_phrase + 1
next_say = tickcount + 50
end)