Command help
#9

Define this at top:
Код:
#if !defined isnull
    #define isnull(%1) \
                ((!(%1[0])) || (((%1[0]) == '\1') && (!(%1[1]))))
#endif
And here is ur cmd

Код:
{
    new pID;
    new skinid;
    if(Dead[playerid] == 1) return SendClientMessage(playerid, COLOR_RED, "You Cannot Use This Command When Dead.");
    if(GetPVarInt(playerid, "IsSpecing") == 1) return SendClientMessage(playerid, COLOR_RED, "You Cannot Use This Command When Spectating.");
    if(GetPVarInt(playerid, "IsFrozen") == 1) return SendClientMessage(playerid, COLOR_RED, "You Cannot Use This Command When Frozen.");
    if(GetPVarInt(playerid, "IsCaged") == 1) return SendClientMessage(playerid, COLOR_RED, "You Cannot Use This Command When Caged.");
    if(GetPVarInt(playerid, "IsJailed") == 1) return SendClientMessage(playerid, COLOR_RED, "You Cannot Use This Command When Jailed.");
    if(IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, COLOR_RED, "You Cannot Use This Command From A Vehicle.");
    if(isnull(params))
    {
         ShowModelSelectionMenu(playerid, skinlist, "Select A Skin", 0, 1 , 0);
    }
    new skinid ;
    skinid = strval(params);

        if(skinid > 299 || skinid < 0) return SendClientMessage(playerid, COLOR_RED, "Invalid Skin ID.");
        if(skinid == GetPlayerSkin(playerid)) return SendClientMessage(playerid, COLOR_RED, "You Already Have This Skin.");
        if(skinid == 294 || skinid == 0) return SendClientMessage(playerid, COLOR_RED, "You Must Be An Admin To Choose This Skin.");
        SetPlayerSkin(playerid, skinid);
        return 1;
}
I have removed the sscanf
Reply


Messages In This Thread
Command help - by Ananisiki - 21.03.2014, 19:30
Re: Command help - by CroM256 - 21.03.2014, 20:03
Re: Command help - by Equuuuin0X - 22.03.2014, 00:04
Re: Command help - by Ananisiki - 22.03.2014, 06:56
Re: Command help - by Ananisiki - 22.03.2014, 08:43
Re: Command help - by Stinged - 22.03.2014, 08:54
Re: Command help - by Ananisiki - 22.03.2014, 08:55
Re: Command help - by Ananisiki - 23.03.2014, 03:34
Re: Command help - by Hanuman - 23.03.2014, 03:51
Re: Command help - by Ananisiki - 23.03.2014, 05:22

Forum Jump:


Users browsing this thread: 5 Guest(s)