• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

Mod Request Vehicle Durability Mod

Is this a modification request?

DiggityDan

Refugee
Hello,

I'm looking for a mod that gives vehicles at least 10 times more durability / HP. I struggle with off-roading, especially in the 4x4 taking massive amounts of damage from very small objects hidden in the terrain. Any help?
 
I like 3x, but it's an easy edit. This is items.xml from my local modlet.

Code:
<items>
<!--  Alter the Vehicle Durability
    Vehicle     Original        Modified (x3)
    Bicycle     1500            4500
    Minibike    2000            6000
    Motorcycle  4000            12000
    4x4         8000            24000
    Gyrocopter  3500            10500
     -->
<setattribute xpath="/items/item[@name='vehicleBicyclePlaceable']/effect_group/passive_effect[@name='DegradationMax']" name="value">4500</setattribute>
<setattribute xpath="/items/item[@name='vehicleMinibikePlaceable']/effect_group/passive_effect[@name='DegradationMax']" name="value">6000</setattribute>
<setattribute xpath="/items/item[@name='vehicleMotorcyclePlaceable']/effect_group/passive_effect[@name='DegradationMax']" name="value">12000</setattribute>
<setattribute xpath="/items/item[@name='vehicleTruck4x4Placeable']/effect_group/passive_effect[@name='DegradationMax']" name="value">24000</setattribute>
<setattribute xpath="/items/item[@name='vehicleGyrocopterPlaceable']/effect_group/passive_effect[@name='DegradationMax']" name="value">10500</setattribute>
</items>
 
I like 3x, but it's an easy edit. This is items.xml from my local modlet.

Code:
<items>
<!--  Alter the Vehicle Durability
    Vehicle     Original        Modified (x3)
    Bicycle     1500            4500
    Minibike    2000            6000
    Motorcycle  4000            12000
    4x4         8000            24000
    Gyrocopter  3500            10500
     -->
<setattribute xpath="/items/item[@name='vehicleBicyclePlaceable']/effect_group/passive_effect[@name='DegradationMax']" name="value">4500</setattribute>
<setattribute xpath="/items/item[@name='vehicleMinibikePlaceable']/effect_group/passive_effect[@name='DegradationMax']" name="value">6000</setattribute>
<setattribute xpath="/items/item[@name='vehicleMotorcyclePlaceable']/effect_group/passive_effect[@name='DegradationMax']" name="value">12000</setattribute>
<setattribute xpath="/items/item[@name='vehicleTruck4x4Placeable']/effect_group/passive_effect[@name='DegradationMax']" name="value">24000</setattribute>
<setattribute xpath="/items/item[@name='vehicleGyrocopterPlaceable']/effect_group/passive_effect[@name='DegradationMax']" name="value">10500</setattribute>
</items>
Perfect. Thank you so much. I really do appreciate it
 
Back
Top