12.08.2014, 15:43
You first need an admin system / vip system. But here is an example
Edit: Nevermind, didn't see "console"
pawn Код:
CMD:yourcommandname(playerid, params[])
{
if(IsPlayerAdmin(playerid)) // Checks if player is rcon
{
// Do something here
}
else return SendClientMessage(playerid, -1, "You are not an RCON-Administrator"); // Send the error
return 1;
}