Posts: 71
Threads: 28
Joined: Jan 2013
Reputation:
0
Hi , how can i send a specific class a message like :
if i want to send a message to all admins which have lvl 1 how do i do that ?
Posts: 123
Threads: 14
Joined: Oct 2015
Using foreach & y_va :
PHP код:
stock SendClientMessageToAdmins(color, const msg[], va_args<>)
{
new string[145];
va_format(string, sizeof(string), msg, va_start<2>);
foreach (new i : Player) if (IsPlayerConnected(i) && PlayerInfo[i][AdminLevel] == 1)
{
SendClientMessage(i, color, string);
}
return 1;
}