16.05.2013, 11:27
Use IsPlayerAdmin
e.g:
Sorry for the indentation - I wrote this on the forums.
e.g:
pawn Код:
CMD:respawnme(playerid,params[])
{
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid,-1,"You must be a RCON admin to use this command");
SpawnPlayer(playerid);
return 1;
}