SA-MP Forums Archive
Hidden Car Colors - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Hidden Car Colors (/showthread.php?tid=40077)



Hidden Car Colors - SpInKsTaR - 17.06.2008

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


Re: Hidden Car Colors - Zezombia - 17.06.2008

I join this question.


Re: Hidden Car Colors - boemeles - 17.06.2008

Bumping the topic and joining the question!

curious about the mysterious "hidden car colors"


Re: Hidden Car Colors - BIGBOY - 18.06.2008

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



Re: Hidden Car Colors - Joe Staff - 18.06.2008

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


Re: Hidden Car Colors - Djiango - 18.06.2008

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.




Re: Hidden Car Colors - Cypog - 06.08.2008

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


Re: Hidden Car Colors - Basketboy - 17.08.2008

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?


Re: Hidden Car Colors - [nl]daplayer - 19.08.2008

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);
}


Re: Hidden Car Colors - Damon_Black - 19.08.2008

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.