I know this is really easiy one but i cant code at all.
I have tryed different plugins but it only prints 1 time.
The problem i found is that print action is forced all at once and taht makes that only print 1 time cause the actions is happening so fast.
client_cmd(say lol)
client_cmd(say lol)
client_cmd(say lol)
Like i sed it only prints 1 time because i think these 3 actions happens so fast.
So i would need some say command that prints 4 times the solution is to solve it by setting set_task between prints.
set_task(0.0)
client_cmd(say lol)
set_task(1.0)
client_cmd(say lol)
set_task(2.0)
client_cmd(say lol)
Reffered to this request.
https://forums.alliedmods.net/showthread.php?t=270939