• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Configurable Help

AndrewD2

Well-known member
I need to add a couple extra feat tables to an archetype and from what I've read I need to use a configurable. I've looked at some of the templates that use them, but I'm still not exactly sure how to do it.

1) I need allow a Teamwork feat to be selected (with all pre-reqs being required)

2) I need to allow a feat to be selected from another list of feats.

Any help is always appreciated.
 
There are 2 bonus feat tables, for the first check the box for Category: Teamwork.

For the second, define whatever list you want based on checking categories and specific feats allowed/disallowed.
 
That part I understand. What I'm not sure of is how to add the option for the player to select the feat at the appropriate level.

I've got the two options setup and the Configurable bootstrapped to the Archetype, but I'm not sure how to make the selector appear at the right levels.
 
Ah, so you're unsure how to get the configurable to add 1 feat at Xth level, then another feat at Yth level? You'd just have to create an eval script that sets the value of the cfgMaxF1 and cfgMaxF2 fields.

For example, if you wanted them to add one primary feat every 3 levels, your script could be:

Phase Post Level: 10000
Code:
field[cfgMaxF1].value += round(#totallevelcount[]/3,0,-1)
 
Back
Top