Aerial
New member
Hi all,
I am stumped. I'm trying to recategorize some of the perks, i.e. move DeadEye under Fortitude for example. I've tried two different approaches, neither of which has worked and I can't figure out why. In both cases I get a yellow warning that says the changes weren't applied but no error messages telling me why.
Approach 1: piecemeal changes: (This is applied to all 5 levels, but only level 1 is included for brevity)
<set xpath="/progression/perks[@name='perkDeadEye']/@parent">skillFortitudeCombat</set>
<remove xpath="/progression/perks[@name='perkDeadEye']/level_requirements[@level='1']"/>
<append xpath="/progression/perks[@name='perkDeadEye']">
<level_requirements level="1"><requirement name="ProgressionLevel" progression_name="attFortitude" operation="GTE" value="1" desc_key="reqFortitudeLevel01"/></level_requirements>
</append>
Approach 2: wholesale delete/replace:
<remove xpath="/progression/perks[@name='perkDeadEye']"/>
<append xpath="/progression/perks">
Inserted copy of DeadEye perk with attribute changes made in the xml
</append>
Has anyone encountered this or know if I simply can't change the skills this way?
Thanks.
I am stumped. I'm trying to recategorize some of the perks, i.e. move DeadEye under Fortitude for example. I've tried two different approaches, neither of which has worked and I can't figure out why. In both cases I get a yellow warning that says the changes weren't applied but no error messages telling me why.
Approach 1: piecemeal changes: (This is applied to all 5 levels, but only level 1 is included for brevity)
<set xpath="/progression/perks[@name='perkDeadEye']/@parent">skillFortitudeCombat</set>
<remove xpath="/progression/perks[@name='perkDeadEye']/level_requirements[@level='1']"/>
<append xpath="/progression/perks[@name='perkDeadEye']">
<level_requirements level="1"><requirement name="ProgressionLevel" progression_name="attFortitude" operation="GTE" value="1" desc_key="reqFortitudeLevel01"/></level_requirements>
</append>
Approach 2: wholesale delete/replace:
<remove xpath="/progression/perks[@name='perkDeadEye']"/>
<append xpath="/progression/perks">
Inserted copy of DeadEye perk with attribute changes made in the xml
</append>
Has anyone encountered this or know if I simply can't change the skills this way?
Thanks.