• 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

Deny bonus feat from Flaws

athelu

Well-known member
Hello,
I have replaced the Traits/Flaws mechanic in pathfinder to use a custom system where the user must take flaws to be able to gain points to spend on Traits. However, whenever they chose a flaw they gain a bonus feat. This is not how I want this to work

How do i override this behavior? I was thinking that i could add a eval script step to reduce the number of feats available but i have no idea what thing that is.
 
I'm not sure how you would script it, but there is an adjustment in the community pack for "Feats Allowed", which allows extra feats or a reduction in feats.

That might help.
 
nice. It has this as an eval script:
Code:
      ~ Add to feats allowed
      #resmax[resFeat] += field[pAdjust].value

So i added a new eval script to my Flaws that runs at FIRST 1000 (like the feats allowed one)
Code:
      ~ If we're not enabled, get out now
      doneif (tagis[Helper.SpcDisable] <> 0)

     ~ reduce feats allowed (becuase of default flaw mechanic)
      #resmax[resFeat] -= 1

And this appears to do the trick.

Does anybody know if the Macro #resmax is native to the Pathfinder 1.0 files, or is this part of the community pack?
 
Last edited:
Back
Top