22.03.2013, 16:27
I have this timer:
and this not send message to players. this work in windows server but in linux this is not work
PHP код:
public OnGameModeInit()
{
SetTimer("OnUpdateEx",1000,true);
}
forward OnUpdateEx();
public OnUpdateEx()
{
foreach(Player, i)
{
SendClientMessage(i,COLOR_YELLOW,"Hi");
}
}