• 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

PUPreRegs

Dragon5e

Active member
There's one slight bug in this procedure. I could not figure how to override this so I had to modify this directly. What happening is you're a Soulknife and pick something like Focused Defense that has both PUBladeSk and PUFeBlSk it won't count the bonus levels from thing like Fighter's Blade feat.
Code is if (focus.tagis[abCategory.PUBladeSk] + focus.tagis[abCategory.PUFeHeBlSk] = 1) then

I changed it to include >= 1
if (focus.tagis[abCategory.PUBladeSk] + focus.tagis[abCategory.PUFeHeBlSk] >= 1) then

Now it will recognize the extra levels for bladeskills prereq if you got both tags on a blade skill.
 
Back
Top