• 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

Ported Practiced Spellcaster feat not working

I found where someone ported over the practiced spellcaster feat and tried it myself but it doesn't appear to be working. The feat should add +4 to the caster level up to your maximum character level. I created a test PC and gaveit 3 levels of Fighter and 3 levels of Wizard. When I add the feat the caster level on the Wizard tab does not change. Here is the script info:

field[usrChosen1].chosen.field[cCasterLev].value += 4
field[usrChosen1].chosen.field[cCasterLev].value = minimum(field[usrChosen1].chosen.field[cCasterLev].value, herofield[tHitDice].value)


Phase = Post-levels ; Priority = 5000

Any ideas?

-dm
 
OK. So used Magical Knack as a base and it is still not working. Here is the script info:

if (field[usrChosen1].ischosen <> 0) then
~our caster level for the chosen class is at +4, to a maximum of the number of Hit Dice we have
field[usrChosen1].chosen.field[cCasterLev].value = minimum(field[usrChosen1].chosen.field[cCasterLev].value + 4, hero.tagcount[Hero.HitDice])
endif

Phase = levels ; Priority = 11005

Any ideas?

-dm
 
I have tried several different phases now and no change to caster level displayed on Wizard tab. I have even tried to removing the conditional logic and just adding to the caster level to make sure my logic wasn't the problem and still no change. If I add the Magical Knack trait I see the caster level change. Bot sure what the difference between that and mine is but something is wrong with mine.

-dm
 
Got it working now. Looked at the timing list and set it to right before the Magical Knack trait and now it seems to work.

Thanks for everyone's help.

-dm
 
Back
Top