Jump to content

Modlet so Armor doesn't encumber you?


MrSamuelAdam

Recommended Posts

Yes: items.xml

<?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.

Link to comment
Share on other sites

I went ahead and made three modlets from your example. If its ok for you I'll post them in a separate thread incase anyone else want them. With credits to you of course. I really like the new mod system, probably gonna make some more modlets after testing it out a bit more :)

 

[ATTACH]25738[/ATTACH]

[ATTACH]25739[/ATTACH]

[ATTACH]25740[/ATTACH]

Halved encumbrance from armour.zip

Reduced encumbrance from armor.zip

Zero encumbrance from armour.zip

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...