• 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

Make a feat a bonus feat for Master of Many Styles?

radionausea

Well-known member
If I were to make a feat a bonus feat for the MoMS monk how would I go about it?

I've tried checking the box for StylePath under Bonus Feat for and I've tried adding the tag "Group ID: BonusFor" "Tag ID: StylePath" manually but it isn't showing up. (I closed Hero Lab and re-opened it, built a new portfolio etc.)

This is to add Pummelling Bully and Pummelling Charge to be selectable.

Do I need to edit the archetype itself in some way?
 
I really can't figure this out. I've looked over a few different feat chains that are allowable by Master of Many Styles and none of them are doing anything different to my modified Pummelling Bully/Charge.

Although when looking at the Archetype itself StylePath feats aren't allowable as bonus feats so I don't know how it chooses them in the first place. I'm confused :(
 
Well, the particular issue has been noted as a bug fix but would anyone who is knowledgeable be able to explain to me how to sort it on my own please? (I know that three posts in a row is annoying)
 
Well, the particular issue has been noted as a bug fix but would anyone who is knowledgeable be able to explain to me how to sort it on my own please? (I know that three posts in a row is annoying)
Sorry I kept meaning to take a look once I got home the last several nights but as you can see I forgot. :(

Hopefully putting a post in the thread will help remind me. :)
 
Do I need to edit the archetype itself in some way?
To 100% fix you will need to edit the archetype as these feats are hard-coded to the class. Its not flexible at all meaning it can't support 3PP or Houserules feats. :(

So for now I would make a new adjustment to add to the character temporally while it gets fixed.

Add this script at Post-levels/11000:
Code:
~ If no base Pummeling Style feat get out now!
doneif (hero.childlives[fPumStyle] <> 1)

~ If over level 5 add Pummeling Bully feat
If (hero.tagcount[Classes.Monk] >= 5) Then
  perform hero.child[cHelpMnk].assign[fInclude.fPumBully]
Endif

~ If over level 8 add Pummeling Charge feat
If (hero.tagcount[Classes.Monk] >= 8) Then
  perform hero.child[cHelpMnk].assign[fInclude.fPumCharge]
Endif
 
Back
Top