10.10.2011, 02:01
Use this inside of the strcmp:
The strcmp being your /weapon and if not RCON admin you just return SendClientMessage() that they are not RCON admin and it will exit the function so no more processing is done, hence why it is only one line.
pawn Код:
if (strcmp())
{
if (!IsPlayerAdmin(playerid)) { return // message here }
}