10.03.2017, 10:53
hello so I have this onplayercommandrecived
it is good
but
how can I make it that if he typed a specific command it doenst send the command to the admins?
it is good
but
PHP код:
format(cstring, sizeof(cstring), "[cmd] [%s]: %s", playerids, cmdtext);
for(new i=0; i<PLAYERS; i++)
{
if(adlvl[i] >= 1 && Listen(i) == 1)
{
if(adlvl[playerid] <= adlvl[i])
{
if(i != playerid) SendClientMessage(i, -1, cstring);
}
}
}