Vehicles will spawn with random extras regardless of the extra status.
Environment: Windows Server, C++ SDK
Reproducing:
rage::IVehicle* car = wrap::car->New(0x35ED670B, position, heading);
for(int i = 0; i < 9; i++) car->SetExtra(i, false);
car->SetDimension(1);
* When spawning a Mule it will spawn with random containers (ads), these ads can then be removed by disabling the correct extra. I'm assuming that the extras are not synced when the vehicle is stremead in.
Thanks.
P.S: It looks like the enabled extras are synced while the disabled extras are not. I believe a proper fix would be to remove all extras after spawning the vehicle then add the ones that are enabled.