Limitations to a Command.
#9

pawn Код:
CMD:skin(playerid, params[])
{
    new skinid, string[128];
    if(sscanf(params, "d", skinid))
        return SendClientMessage(playerid, COLOR_RED, "USAGE: /s(kin) [skinID].");
    else if(skinid < 0 || skinid > 299) return SendClientMessage(playerid, 0xFF000000, "You can't use skin above 299 or lower than 0.");
    SetPlayerSkin(playerid, skinid);
    format(string, sizeof(string), "You have set your skinID to %d.", skinid);
    SendClientMessage(playerid, COLOR_GREEN, string);
    return true;
}
That should work , pds2k12 has made an error sorry i didn't notice that
Reply


Messages In This Thread
Limitations to a Command. - by NoSoap - 01.12.2013, 14:51
Re: Limitations to a Command. - by SilentSoul - 01.12.2013, 14:58
Re: Limitations to a Command. - by Patrick - 01.12.2013, 15:02
Re: Limitations to a Command. - by NoSoap - 01.12.2013, 15:02
Re: Limitations to a Command. - by NoSoap - 01.12.2013, 17:10
Re: Limitations to a Command. - by SilentSoul - 01.12.2013, 17:17
Re: Limitations to a Command. - by Audi_Quattrix - 01.12.2013, 17:25
Re: Limitations to a Command. - by NoSoap - 01.12.2013, 17:40
Re: Limitations to a Command. - by SilentSoul - 01.12.2013, 17:45
Re: Limitations to a Command. - by NoSoap - 01.12.2013, 17:51

Forum Jump:


Users browsing this thread: 1 Guest(s)