Command problem
#3

I make this for you, but not tested xD

Код:
CMD:aod(playerid, params[])
{
    if(pInfo[playerid][Admin] < 1) return NotAdminMSG(playerid);
    if(GetPVarInt(playerid, "PlayerOnDuty"))
    {
        SetPHealth(playerid, 100);
        pInfo[playerid][AOD] = 0;
        SCM(playerid, COLOR_WHITE, ""WORD_ADMIN"You are off duty now!");
        Delete3DTextLabel(pInfo[playerid][AODLabel]);
        CheckPlayerColor(playerid);
        return 0;
    }
    else
    {
        new pworld;
        pworld = GetPlayerVirtualWorld(playerid);
        pInfo[playerid][AODLabel] = Create3DTextLabel("Admin On Duty!", COLOR_ADMIN, 0.000, 0.000, 0.000, 15.0, pworld, 0);
        Attach3DTextLabelToPlayer(pInfo[playerid][AODLabel], playerid, 0.0, 0.0, 0.7);
        SetPHealth(playerid, 99999);
        pInfo[playerid][AOD] = 1;
        SCM(playerid, COLOR_WHITE, ""WORD_ADMIN"You are on duty now!");
        SetPlayerColor(playerid, COLOR_ADMIN);
        SetPVarInt(playerid, "PlayerOnDuty");
        return 0;
    }
    return 1;
}
Reply


Messages In This Thread
Command problem - by E7mad - 25.12.2015, 11:55
Re: Command problem - by lucamsx - 25.12.2015, 12:00
Re: Command problem - by SilverStand - 25.12.2015, 12:03
Re: Command problem - by E7mad - 25.12.2015, 12:14
Re: Command problem - by saffierr - 25.12.2015, 13:56

Forum Jump:


Users browsing this thread: 1 Guest(s)