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

Modlet so Armor doesn't encumber you?

MrSamuelAdam

New member
I want to craft armor and use it, but honestly hate when I'm slowed down. Is this a possability to make all armor not slow you down or least make it only like ~2-5%?

 
Yes: items.xml

Code:
<?xml version="1.0" encoding="utf-8"?>
<configs>

 <!-- just remove it from all items -->
 <remove xpath="/items/item/effect_group/passive_effect[@name='Mobility' and @operation='perc_subtract']"/>


 <!-- halve it, vanilla values are 4% and 6%; value selector is needed for this -->
 <set xpath="/items/item/effect_group/passive_effect[@name='Mobility' and @operation='perc_subtract' and @value=0.06]">0.03</set>
 <set xpath="/items/item/effect_group/passive_effect[@name='Mobility' and @operation='perc_subtract' and @value=0.04]">0.02</set>


 <!-- set all to 2% -->
 <set xpath="/items/item/effect_group/passive_effect[@name='Mobility'and @operation='perc_subtract']">0.02</set>

</configs>
Remove the lines you don't want, Tweak as you like.

Look at other modlets for the structure.

 
Last edited by a moderator:

Attachments

Back
Top