So I updated my modlet that gives max slots per QL and also removes some of the random values from items to A21 and it was working without error until this morning. So it has to be something with yesterdays update. The commented out line is the one that is failing, it had been 2,6 like the others, but doing a find all there was no 2,6 with that value, only 1,6 so I changed it. Same result. The other lines still work fine.
Code:
<set xpath="/items/item/effect_group/passive_effect[contains(@name, 'ModSlots')][@value='1,1,1,2,2,3']/@value">3,3,3,3,3,3</set>
<set xpath="/items/item/effect_group/passive_effect[contains(@name, 'ModSlots')][@value='1,1,2,2,3,4']/@value">4,4,4,4,4,4</set>
<set xpath="/items/item/effect_group/passive_effect[contains(@name, 'ModSlots')][@value='2,2,2,3,3,4']/@value">4,4,4,4,4,4</set>
<set xpath="/items/item/effect_group/passive_effect[contains(@name, 'ModSlots')][@value='2,2,3,3,4,4']/@value">4,4,4,4,4,4</set>
<set xpath="/items/item/effect_group/passive_effect[contains(@name, 'ModSlots')][@value='3,3,3,4,4,4']/@value">4,4,4,4,4,4</set>
<remove xpath="/items/item/effect_group/passive_effect[(@name='EntityDamage') and (@operation='perc_add') and not(@tier='2,6') and not(@tags='secondary')]"/>
<remove xpath="/items/item/effect_group/passive_effect[(@name='BlockDamage') and (@operation='perc_add') and not(@tier='2,6') and not(@tags='secondary')]"/>
<remove xpath="/items/item/effect_group/passive_effect[(@name='DamageFalloffRange') and (@operation='perc_add') and not(@tier='2,6') and not(@tags='secondary')]"/>
<!-- <remove xpath="/items/item/effect_group/passive_effect[(@name='DegradationMax') and (@operation='perc_add') and not(@tier='1,6') and not(@tags='secondary')]"/> -->
<remove xpath="/items/item/effect_group/passive_effect[(@name='RoundsPerMinute') and (@operation='perc_add') and not(@tier='2,6') and not(@tags='secondary')]"/>
<remove xpath="/items/item/effect_group/passive_effect[(@name='MagazineSize') and (@operation='perc_add') and not(@tier='2,6') and not(@tags='secondary')]"/>
<remove xpath="/items/item/effect_group/passive_effect[(@name='WeaponHandling') and (@operation='perc_add') and not(@tier='2,6') and not(@tags='secondary')]"/>
Last edited by a moderator: