04.06.2014, 10:23
If I have a command that needs RCON Admin to work how do I make it be for an admin level ex. 1337
Thanks.
Thanks.
if(PlayerInfo[playerid][pAdmin] >= 1337)
if(PlayerInfo[playerid][pAdmin] >= 1337)
if(PlayerInfo[playerid][pAdmin] < 1337)
enum playerdata
{
pAdminLevel,
pVIP
}
new pInfo[MAX_PLAYERS][playerdata];
CMD:testadmin(playerid, params[])
{
if(!pInfo[playerid][pAdminLevel])) SendClientMessage(playerid, -1, "u aren't admin, sorry!");
// more code
}