• 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

Steadfast Determination

Triskavanski

Active member
Trying to create the feat for a game, but I can't figure out the code I need for actually replacing WIS with CON.

Tried to use Steadfast Personality, but that was just an insight bonus
 
You can use your Constitution modifier in place of your Wisdom modifier on Will saves. You do not automatically fail Fortitude saves on a roll of natural 1.
 
You can use your Constitution modifier in place of your Wisdom modifier on Will saves. You do not automatically fail Fortitude saves on a roll of natural 1.
The community pack has the adjustment "Saving Throw Ability Score" that lets you do this.

Otherwise you just need to do the following in the script:
PreAttributes/10000
Code:
~ Set Will saves to use Con
perform hero.child[svWill].assign[SaveOver.aCON]
 
Back
Top