04.03.2015, 14:18
I guess pAdmin level 1 is helper, and above is administrators?
Then just use a switch to detect if they're level 1 or above.
And SendClientMessageToAll accordingly.
Then just use a switch to detect if they're level 1 or above.
pawn Код:
switch(PlayerInfo[playerid][pAdmin])
{
case 1: // Level 1 (helper)
default: // All other levels (administrator)
}