[FilterScript] C-RainbowCar
#10

Quote:
Originally Posted by -Prodigy-
Посмотреть сообщение
This is just a horrible way of doing it, and not to mention that you still gotta add dozens of lines to add more colors.

Here's a quick and simple way of doing it(and can change 127 random colors):

pawn Код:
new
    bool: gRainbow[MAX_PLAYERS] = {false, ...};

CMD:rainbow(playerid, params[])
{
    if(gRainbow[playerid])
    {
        SendClientMessage(playerid, -1, "You've disabled rainbow colors for your vehicle!");

        gRainbow[playerid] = false;
    }
    else
    {
        SendClientMessage(playerid, -1, "You've enabled rainbow colors for your vehicle!");

        gRainbow[playerid] = true;
    }
    return 1;
}

// Mode init
SetTimer("UpdateRainbow", 1000, true);

forward UpdateRainbow();
public UpdateRainbow()
{
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(!IsPlayerConnected(i) || !IsPlayerInAnyVehicle(i) || gRainbow[i] == false)
            continue;

        ChangeVehicleColor(GetPlayerVehicleID(i), random(127), random(127));
    }
    return 1;
}
Excellent, I wanted also to say about the times, he's using 6 times instead of 1 and changing randomly the colors.
Reply


Messages In This Thread
[No subject] - by C00K13M0N$73R - 30.08.2012, 00:51
Re: C-RainbowCar - by Cena44 - 30.08.2012, 00:59
Re: C-RainbowCar - by C00K13M0N$73R - 30.08.2012, 01:09
Re: C-RainbowCar - by Unte99 - 30.08.2012, 10:09
Re: C-RainbowCar - by C00K13M0N$73R - 30.08.2012, 10:12
Re: C-RainbowCar - by NaBeeL[NxT] - 01.09.2012, 08:05
Re: C-RainbowCar - by NicholasA - 23.12.2012, 13:22
Re: C-RainbowCar - by M3mPHi$_S3 - 09.01.2013, 07:24
Re: C-RainbowCar - by -Prodigy- - 09.01.2013, 11:00
Re: C-RainbowCar - by Konstantinos - 09.01.2013, 11:04

Forum Jump:


Users browsing this thread: 1 Guest(s)