• 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

Spellcasting Prodigy Feat question

Lawful_g

Well-known member
I am working on a new feat, Spellcasting Prodigy.

For the purpose of determining bonus spells per day, you treat your primary spellcasting ability score as being 2 points higher than its actual value. If you have more than one spellcasting class, the bonus applies to only one of those classes.

The feat allows the user to pick a spellcasting class, I need a script to define what the primary spellcasting attribute for the chosen class is.

Then I need a script to add additional castings to certain spell levels. Any pointers?
 
On the class helper, look at the fields (develop menu...floating info windows...show selection fields) - you'll see one called "cSplAttVal", named "Linked Attribute Value" - looks appropriate.

So that you don't have to figure out the timing, cSplAttVal is calculated at PoatAttr/0. It is calculated by adding the value of the attribute to whatever value's already there, so any time before PostAttr/0 (anytime in User Post Level, perhaps), just add 2 to cSplAttVal.
 
Back
Top