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

a17e - Possible to have multiple requirements for Perks?

In a16 a few perks had multiple requirements - that is you had to have both skill X as well as another perk at Rank 1. Is this possible in a17e? Looking at the xml I don't see any examples but that doesn't mean it's impossible, just that TFP aren't doing it. Is there a way to have multiple requirements (probably just syntax) or was this ability removed for some coding reason?

 
Yes it is possible, here's an example:

Code:
...
<level_requirements level="1">
<requirement name="ProgressionLevel" progression_name="attFortitude" operation="GTE" value="1" desc_key="reqFortitudeLevel1"/>
<requirement name="ProgressionLevel" progression_name="attPerception" operation="GTE" value="1" desc_key="reqPerceptionLevel1"/>
</level_requirements>
...
 
Back
Top