car color change command?[+REP]
#2

Requires ZCMD and sscanf2 includes.
pawn Код:
CMD:vcolor(playerid, params[])
{
    if(GetPlayerState(playerid) != 2) return SendClientMessage(playerid, 0xFF0000FF, "You are not driving a vehicle.");
    new color[2];
    if(sscanf(params, "iI(-1)", color[0], color[1]))
    {
        return SendClientMessage(playerid, 0xFF0000FF, "USAGE: /colorcar [color1] <color2>");
    }
    if(color[1] == -1) color[1] = color[0]; // If color2 was left out, set it the same as color 1
    new szSuccess[44];
    format(szSuccess, sizeof(szSuccess), "Vehicle colors changed to: {FFFFFF}%i and %i.", color[0], color[1]);
    SendClientMessage(playerid, 0x00FF00FF, szSuccess);
    ChangeVehicleColor(GetPlayerVehicleID(playerid), color[0], color[1]);
    return 1;
}
Reply


Messages In This Thread
car color change command?[+REP] - by [SU]Spartan - 21.07.2014, 08:50
Re: car color change command?[+REP] - by LivingLikeYouDo - 21.07.2014, 10:08

Forum Jump:


Users browsing this thread: 1 Guest(s)