30.11.2012, 13:12
Did you mean that all vehicles must have 1 custom color? Well then you can loop through Max vehicles and change their color to what you wish.
pawn Код:
#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
for(new i; i< MAX_VEHICLES; i++)
{
//ChangeVehicleColor(i, 0, 1); //Edit this line.
}
return 1;
}
#else
public OnGameModeInit()
{
for(new i; i< MAX_VEHICLES; i++)
{
//ChangeVehicleColor(i, 0, 1); //Edit!
}
return 1;
}
#endif