Stop Army spawning tanks?
-
Yo gang!
Does anyone know what the files are to stop the army spawning tanks when you get five stars? (using Army at five stars mod).
Ta,
Cris
-
dispatch.meta:
...\mods\update\update.rpf\common\data\dispatch.meta
Open 'dispatch.meta' & search for '<Vehicle>rhino</Vehicle>'.
Remove the '<Vehicle>rhino</Vehicle>' lines you find to stop the Rhino Tank from spawning.Example (your vehicle/ped names may differ):
Change this:
<Item> <ZoneType>VEHICLE_RESPONSE_ARMY_BASE</ZoneType> <VehicleModels> <Vehicle>rhino</Vehicle> <Vehicle>mesa3</Vehicle> <Vehicle>barracks</Vehicle> </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>
to this:
<Item> <ZoneType>VEHICLE_RESPONSE_ARMY_BASE</ZoneType> <VehicleModels> <Vehicle>mesa3</Vehicle> <Vehicle>barracks</Vehicle> </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>
Alternatively, you can also replace 'rhino' with the name of another police/dispatch vehicle to have it spawn instead of the Rhino Tank
Example:
<Item> <ZoneType>VEHICLE_RESPONSE_ARMY_BASE</ZoneType> <VehicleModels> <Vehicle>apc</Vehicle> <Vehicle>mesa3</Vehicle> <Vehicle>barracks</Vehicle> </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>
-
mate. thanks. very helpful indeed
-
@CRISSY-CRIS
Cheers
One extra thing (just for info), in 'dispatch.meta' there are 3 areas of spawn called '<ZoneType>' that control what spawns depending on where you are in the game. They are:- 'VEHICLE_RESPONSE_ARMY_BASE' - Controls what dispatch vehicles spawn at Zancudo Military Base
- 'VEHICLE_RESPONSE_COUNTRYSIDE' - Controls what dispatch vehicles spawn when you are in the Countryside.
- No '<ZoneType>' line (3rd one down usually) - Controls what dispatch vehicles spawn when you are in the main City.
-
@a63nt-5m1th good to know. Thanks again buddy 👍🏻