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

Can't move/remove perks?

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.

 
The yellow message is saying it can't apply the changes because you don't have the correct path

you have:

Progression -> perks[PERK NAME]

It should be

Progression -> perks -> perk[PERK NAME]

 
Last edited by a moderator:
I can't believe I missed something that basic!  Thank you!  I'd been staring at it for 2 days...

 
Back
Top