26.11.2012, 09:20
SetVehicleNumberPlate to specifc car ids how to do so
new TaxiVehicle[2];
/// this under OnGameModeInit
PrivateVehicle[1] = AddStaticVehicleEx(504,1779.7747,-1909.4396,13.5150,270.6893,79,7,-1);
// Put this anywhere At the bottom over ur script.. i do..
stock CountPrivateVehicles()
{
new count;
for(new PV=0; PV != 2; PV++)
{
if(PrivateVehicle[PV] == INVALID_VEHICLE_ID)
SetVehicleNumberPlate(PrivateVehicle[PV], "Thenamehere");
SetVehicleToRespawn(PrivateVehicle[PV]);
count ++;
}
return count;
}