• 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

Free 0-level spells in spellbook of custom class

Redcap's Corner

Well-known member
I have a file I put together for a custom class that casts from spellbooks. I had no problems getting the starting spellbook working for the class, complete with free cantrips. I left the "Free Initial Spells in Spellbook" and "Free Spells/Level" fields blank, so they would default to 3+Int and 2, respectively, and they are, but they're counting the cantrips against those limits. Right now I only have 6 cantrips loaded in the spellbook (two of which are from the core rulebook, and four of which are custom cantrips). With a starting Int of 12, I should get 4 free spells at 1st level, but before I add any 1st-level spells, Hero Lab tells me I'm 2 spells over my free spell limit. I've looked at other spellbook-based classes and it doesn't look like I'm doing anything relevantly different on either the class or the starting spellbook, but magi and wizards don't seem to have this issue. What can I do to avoid it for my class?
 
Are you bootstrapping the cantrips with the same tags and fields in the spellbook? Here is an example from the magus starting spellbook:

Code:
      <bootstrap thing="spAcidSpl0">
        <autotag group="Helper" tag="Shadow"/>
        <autotag group="Helper" tag="DefSpell"/>
        <assignval field="sSplbkFree" value="1"/>
        </bootstrap>
 
Are you bootstrapping the cantrips with the same tags and fields in the spellbook? Here is an example from the magus starting spellbook:

Code:
      <bootstrap thing="spAcidSpl0">
        <autotag group="Helper" tag="Shadow"/>
        <autotag group="Helper" tag="DefSpell"/>
        <assignval field="sSplbkFree" value="1"/>
        </bootstrap>

I did actually make sure the fields and tags were all there originally. However, it looks like whatever I copied them from (which I thought was the magus spellbook... weird), had Helper.BookDefSpl instead of Helper.DefSpell. I corrected the spells, and now it works fine! Thanks!
 
Back
Top