• Mods are now organized as resources. Use the Mods link above to browse for or submit a mod, tool, or prefab.

    The TFP Official Modding Forum Policy establishes the rules and guidelines for mod creators and mod users.

Decrease Encumber slots by 9 Assistance please.

Ianua

Refugee
<passive_effect name="CarryCapacity" operation="base_set" value="27"/>

I want to change the starting capacity to 27 from the default of 18. I am in no way a programmer but I have hacked (with a very large blunt tool) That I need to change the entityclasses.xml, most likely using the set command. It would take me the better part of the next week to hammer out the code, so I figured I would ask one of you that isn't stupid to 9 decimal places what the code for this line is.

I have the BetterBalance Mod, so I will be just pasting the code into that enitityclasses.xml. (I removed all the entries for making the backpack bigger, I like the size, just want m=one more row of free slots.

Thanks in advance.

 
Code:
<set xpath="/entity_classes/entity_class[@name='playerMale']/effect_group/passive_effect[@name='CarryCapacity'][@value='18']/@value">27</set>
 
Back
Top