Cops - /givelicense Command
#5

Your "Else If" must contain a condition, and your "Else" statement should be part of "IsACop".

It should be like this;

pawn Код:
CMD:givelicense(playerid)
{
    if(IsACop(playerid))
    {
        if(PlayerInfo[playerid][pGunLic] == 0);//This is if they DON'T have a gun license
        {
            PlayerInfo[playerid][pGunLic] = 1;
            SendClientMessage(playerid, COLOR_ORANGE, "This is a test");
            return 1;
        }
        else
        {
            PlayerInfo[playerid][pGunLic] = 1;
            SendClientMessage(playerid, COLOR_ORANGE, "They already have a Gun License");
            return 1;
        }
    }
    else
    {
        SendClientMessage(playerid, COLOR_RED," You are not a cop!");
        return 1;
    }
}
Reply


Messages In This Thread
Cops - /givelicense Command - by Jay_Dixon - 13.12.2012, 04:50
Re: Cops - /givelicense Command - by RajatPawar - 13.12.2012, 04:54
Re: Cops - /givelicense Command - by Threshold - 13.12.2012, 04:58
Re: Cops - /givelicense Command - by RajatPawar - 13.12.2012, 05:02
Re: Cops - /givelicense Command - by Mado - 13.12.2012, 05:03
Re: Cops - /givelicense Command - by Jay_Dixon - 13.12.2012, 18:18

Forum Jump:


Users browsing this thread: 2 Guest(s)