command problem help rep+
#1

when player again type /aduty and when admin turn off admin duty he have cj skin and white color


Код:
CMD:aduty(playerid, params[])
{
    if(pInfo[playerid][pLevel] >= 1)
    {
        new skin[MAX_PLAYERS];
        if(OnDuty[playerid] == 0)
        {
            skin[playerid] = GetPlayerSkin(playerid);
            SetPlayerSkin(playerid, 217);
            SetPlayerHealth(playerid, 100000);
            SetPlayerArmour(playerid, 100000);
            SetPlayerColor(playerid, 0x01FCFFFF);
            OnDuty[playerid] = 1;
        }
        else if(OnDuty[playerid] == 1)
        {
            SetPlayerSkin(playerid, skin[playerid]);
            SetPlayerHealth(playerid, 100);
            SetPlayerArmour(playerid, 0);
            SetPlayerColor(playerid, 0xFFFFFFFF);
            OnDuty[playerid] = 0;
        }
    }
    else
    {
        SendClientMessage(playerid, red, "You are not administrator.");
    }
    return true;
}
Reply


Messages In This Thread
command problem help rep+ - by Mijata - 23.03.2015, 17:41
Re: command problem help rep+ - by arjanforgames - 23.03.2015, 17:43
Re: command problem help rep+ - by Mijata - 23.03.2015, 17:44
Re: command problem help rep+ - by CalvinC - 23.03.2015, 17:45
Re: command problem help rep+ - by Mijata - 23.03.2015, 17:47
Re: command problem help rep+ - by arjanforgames - 23.03.2015, 17:56
Re: command problem help rep+ - by CalvinC - 23.03.2015, 18:03
Re: command problem help rep+ - by Aly - 23.03.2015, 18:06
Re: command problem help rep+ - by MrCallum - 23.03.2015, 18:12
Re: command problem help rep+ - by CalvinC - 23.03.2015, 18:15

Forum Jump:


Users browsing this thread: 1 Guest(s)