18.03.2012, 06:33
Alvord you are wrong
it would be something like this
DarioKelc make a enum something like
that should work
EDIT:
if you want to add a message if player is not administrator you will just do like this
it would be something like this
pawn Код:
if(PlayerInfo[playerid][pAdmin] > 1)
pawn Код:
enum pInfo
{
pAdmin,
};
new PlayerInfo[MAX_PLAYERS][pInfo];
EDIT:
if you want to add a message if player is not administrator you will just do like this
pawn Код:
if(PlayerInfo[playerid][pAdmin] > 1)
{
//codes
}
else return SendClientMessage(playerid, COLOR_ERROR, "You are not Administrator!");