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

why does this not work? Tier 6

UbberN00ber

New member
why does this not allow me to craft any tier 6 even when im maxed 5/5 on skills

<configs>
<set xpath="/progression/perks/perk/effect_group/passive_effect[contains(@name, 'CraftingTier')]/@value">1,2,3,4,5</set>

</configs>
 
This seems to work fine for me:

Code:
<set xpath="/progression/perks/perk/effect_group/passive_effect[@name='CraftingTier'][@level='1,2,3,4,5']/@value">1,2,3,4,5</set>
Note that this passive_effect is a base_add type with a default value of 1 so all the values gain +1 in-game.

When set to 1,2,3,4,5 you can correspondingly craft tiers 2,3,4,5,6.

Now the main issue with modifying progression.xml on an existing game is that it doesn't update properly.

To do so you either have to level up the modified attribute/skill/perk or drink a respec potion.

 
Back
Top