Hidden Car Colors
#1

There was this thread about Hidden usable car colors
I know the link was http://forum.sa-mp.com/index.php?topic=41799.0
Anyway to bring this back?
****** never cached it
Reply
#2

I join this question.
Reply
#3

Bumping the topic and joining the question!

curious about the mysterious "hidden car colors"
Reply
#4

I dont have any screen shots but use this command I made

EXTRA CAR COLORS COMMAND!!!

You can use this to change you vehicle color the secret hidden car colors!
USAGE: /CARCOLOR [1-300] [1-300]
NOTE: Can go up higher then 300 but still the same color :P
Код:
if(strcmp(cmd, "/carcolor", true) == 0)
{
new tmp[256];
new co1;
new co2;
tmp = strtok(cmdtext, idx);

if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_YELLOW, "ERROR: /CARCOLOR [1-300] [1-300]");
return 1;
}
co1 = strval(tmp);
ChangeVehicleColor(GetPlayerVehicleID(playerid), co1, co1);
tmp = strtok(cmdtext, idx);

if(!strlen(tmp))
{
ChangeVehicleColor(GetPlayerVehicleID(playerid), co1, co1);
return 1;
}
co2 = strval(tmp);
ChangeVehicleColor(GetPlayerVehicleID(playerid), co1, co2);
return 1;
}
NOTE: Needs STRTOK
Reply
#5

there are even colors IDed 65535 and up, mostly just dark green occasionally, but most of it is just Black
Reply
#6

Yeah, there's some pretty neat colors.
Like: 10988, 440, 661, 666, 6666677, 199826, 199811, 199812, 199862.

If anyone knows the color, for the green sabre. Please post it here.

ScreenShot
The colors on the boat is 10988, 666. Or the other way around.

Reply
#7

There are not more than 256 colors, ID 255 ist the last. 256 is 0, 257 is 1 and so on.
Reply
#8

Quote:
Originally Posted by Cypog
There are not more than 256 colors, ID 255 ist the last. 256 is 0, 257 is 1 and so on.
Yes, that's right.

BTW. I have a question about car colors: When some guy destroy, damage or just drive the car somewhere else and leave, when the car disappears it will re-spawn, right? So, in my script it re-spawns allways in the same color, Where can I find the code for changing car color every time when it re-spawns?
Reply
#9

Quote:
Originally Posted by Basketboy
Quote:
Originally Posted by Cypog
There are not more than 256 colors, ID 255 ist the last. 256 is 0, 257 is 1 and so on.
Yes, that's right.

BTW. I have a question about car colors: When some guy destroy, damage or just drive the car somewhere else and leave, when the car disappears it will re-spawn, right? So, in my script it re-spawns allways in the same color, Where can I find the code for changing car color every time when it re-spawns?
public OnVehicleRespawn(vehicleid)
{
ChangeVehicleColor(vehicleid, newcolorid);
}
Reply
#10

Remember that some of these colors are out of synch. You might see blue and someone else will see pink. Very annoying.


I wrote down alot of the ones but I can't seem to find my pad of paper.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)