• 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

Template adding class spellcasting

frumple

Well-known member
Is there a way for a template to add racial spellcasting? That is it adds spellcasting as a specific class of a specific level.
 
I created a feat and bootstrapped cHelpBrd to the feat. I also added the following script to the feat (post-levels 10000):

~ If we're disabled, do nothing
doneif (tagis[Helper.FtDisable] <> 0)

field[abValue].value += 20

~ Loop through all Arcane/Divine classes
foreach pick in hero from Class where "CasterSrc.Divine|CasterSrc.Arcane"
~ increase caster level
eachpick.field[cMagicLev].value += field[abValue].value
nexteach

It gives me a Bard tab with only the spells allowed, so not the bard class abilities.
 
Last edited:
Back
Top