02.09.2018, 15:32
Quote:
well he said group chat but he is showing tutorial to make /adminchat lol
|
You can do that:
PHP Code:
AdminMessage(color, const string[])
{
for(new i = 0, j = GetPlayerPoolSize(); i <= j; i++)
{
if(PlayerInfo[i][pAdmin] < 1) continue;
SendClientMessage(i, color, string);
}
return 1;
}