• 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

New feat category that updates some classes' bonus feat lists.

Redcap's Corner

Well-known member
As part of a design project I'm working on, we've developed a new type of feat. Part of the rules baggage for feats of this category is that there are a few specific classes that can take these feats as additional options for their bonus feats. I had hoped that by marking the appropriate classes in the "Bonus Feat For..." section of each feat, it would add each feat individually to those classes' bonus feat options, but it doesn't seem to be working. Is there a way to do what I want to do?
 
You either need to assign the fInclude.? tag for each feat to the class or add a Custom.? tag to each feat modify the feat expression to include that tag, both will be done with a mechanic.
 
Holy crap! Mechanics are awesome. I never knew about these. Thanks!

Code for those interested:

FIRST/450
Code:
foreach pick in hero from Class where "sClass.cHelpXXX"
  perform eachpick.assign[fCategory.XXX]
nexteach
 
I would use BaseClHelp for the component part of that statement, also if you're just doing one or two classes and its only a few feats, I'd use the hero.childfound[] instead of the foreach as it will probably use less processing power.
 
No, don't replace Class with BaseClHelp. BaseClHelp was only left in for backwards comparability when it was replaced with "Class".
 
Back
Top