• 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

Bonus Feats you already have question

Lawful_g

Well-known member
"At 2nd level, you gain Diehard as a bonus feat, even if you lack the prerequisites. If you already have Diehard, you can select any other feat for which you meet the prerequisites as your bonus feat."

Is there a way to check if the character already has Diehard or another feat and add a bonus feat if so? I recall this coming up a couple times.
 
I'd say add one to the character's total feats at that level, and add an evalrule to the class helper to make sure that once you're at the appropriate level, you have the diehard feat. That way, if diehard is already present, the user can pick something new, and if it isn't, they'll have to use the new feat slot to choose it in order to fulfill the requirement.

Here's all the eval rule needs:
Code:
validif (field[cTotalLev].value < 2 )
valifif (#hasfeat[fDiehard] <> 0)
 
Back
Top