Help with /og and /cg
#2

Well ... how do you store the admin level? Mine is stored like
pawn Код:
PlayerInfo[playerid][pLevel]
and you should just change
pawn Код:
if(IsPlayerAdmin(playerid))
with your "variable" ... in my case being
pawn Код:
PlayerInfo[playerid][pLevel]
and add
pawn Код:
> 0
meaning "If pLevel is higher than 0"
and the code would look like

pawn Код:
if(!strcmp(cmdtext,"/og",true))
        {
            if(PlayerInfo[playerid][pLevel] > 0){
            new string[50];
            new movetime = MoveObject(gate, 2101.30786, 15.75350, -5.72150, 2.00);
            SendClientMessage(playerid, 0xDEEE20FF, "gate opening.");
            }
            else SendClientMessage(playerid, 0xDEEE20FF, "You are not an admin to move the gate.");
        }
Reply


Messages In This Thread
Help with /og and /cg - by Jacob756 - 01.04.2014, 13:19
Re: Help with /og and /cg - by ZeroTheScyther - 01.04.2014, 20:19

Forum Jump:


Users browsing this thread: 1 Guest(s)