Game crashes at 5 stars
-
My game just closes after like 30-40 seconds when I get a 5 star wanted level. I have a few cop car replacements but that's all.
-
@voided
Syntax Errors:
Check associated '.meta' files ('handling.meta', 'vehicles.meta', 'carcols.meta/.ymt' & 'carvariations.meta/.ymt') for syntax errors:OpenIV > right-click file > 'Edit' > in the file, hit the '[</> XML]' button at the top > It will then tell you if any errors were detected. If you find any & have trouble fixing them, give me a shout
dispatch.meta:
If no '.meta' errors are found, use 'dispatch.meta' to remove/replace police vehicles one-by-one from the '<VehicleSets>' section, until you find the one causing it.Extra 'dispatch.meta' Info (might be useful etc):
The game has three dispatch 'zones' (Zancudo, Countryside & City), depending on your setup, it may be useful to know, once you get 5 stars, if the crash happens when you stay in the main city, countryside, zancudo or what combination of those.
That may help you figure out what vehicle in 'dispatch.meta' is causing it a bit quicker.If it doesn't ever happen at a lower star rating then it must be a vehicle that only appears at 5 Stars.
Use 'dispatch.meta's '</WantedLevel5>' section to ascertain what that vehicle might be.Note: The '<DispatchVehicleSets>' in '</WantedLevel5>' refer to sets of vehicles in the '<VehicleSets>' section of 'dispatch.meta':
'<WantedLevel5>' 'DT_PoliceAutomobile' Example:
<WantedLevel5> <DispatchServices> <Item> <DispatchType>DT_PoliceAutomobile</DispatchType> <NumPedsToSpawn value="8"/> <DispatchVehicleSets> <Dispatch>POLICE_CAR</Dispatch> <Dispatch>SWAT_RIOT</Dispatch> <!-- References '<Name>SWAT_RIOT</Name>' in '<VehicleSets>' --> <Dispatch>ARMY_CAR</Dispatch> <Dispatch>ARMY_MESA</Dispatch> </DispatchVehicleSets> </Item>
'<VehicleSets>' 'SWAT_RIOT' Example:
<Vehicle> <Name>SWAT_RIOT</Name> <!-- 'SWAT_RIOT' referenced from 5 star '<DispatchVehicleSets>' above --> <ConditionalVehicleSets> <Item> <ZoneType>VEHICLE_RESPONSE_ARMY_BASE</ZoneType> <!-- vehicles that spawn when wanted in Zancudo Military Base --> <VehicleModels> <Vehicle>crusader</Vehicle> <!-- name of Zancude dispatch vehicle here --> <Vehicle>mesa3</Vehicle> <!-- here --> <Vehicle>barracks</Vehicle> <!-- & here --> </VehicleModels> <PedModels> <Ped>S_M_M_Marine_01</Ped> <Ped>S_M_Y_Marine_01</Ped> <Ped>S_M_Y_Marine_03</Ped> </PedModels> </Item> <Item> <ZoneType>VEHICLE_RESPONSE_COUNTRYSIDE</ZoneType> <!-- vehicles that spawn when wanted in countryside --> <VehicleModels> <Vehicle>riot</Vehicle> <!-- name of countryside dispatch vehicle here --> </VehicleModels> <PedModels> <Ped>S_M_Y_Swat_01</Ped> </PedModels> </Item> <Item> <VehicleModels> <!-- No '<ZoneType>', vehicles that spawn when wanted in city --> <Vehicle>riot</Vehicle> <!-- name of city dispatch vehicle here --> </VehicleModels> <PedModels> <Ped>S_M_Y_Swat_01</Ped> </PedModels> </Item> </ConditionalVehicleSets> </Vehicle>