• 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

+1 caster level

Extra Magic / Power Levels, click the Edit button.
Row 0 is first level, put the number 1 in the level you want the ability. For multiple levels increase the number and put in appropriate rows.

At least, that's how I think it works having loaded a copy of Arcane Trickster and Dragon Disciple into the editor.

HTH
 
Here's a script I used to improve a chosen class's Caster Level by 4 (up to maximum of HD). Maybe it will help.

Code:
Post-levels ; 5000

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