View Single Post
Vex
Junior Member
 
Join Date: May 2012
Posts: 8

Old September 24th, 2023, 06:18 AM
Well, it almost worked perfectly. It worked wonderfully adding it to the individual sheets. Each class has the cantrip automatically added to their spells and it shows up as expected on the character sheet.

I noticed though that all of the various class spells show up in both of the Spells pages, whether full description or not. Is there something else that I need to add to the Bootstrap to keep it from being printed when it's not for the selected class?

Code:
<thing id="adjCoreCntrp" name="Core Cantrip" description="This adjustment adds a free class-specific cantrip to the caster&apos;s known spells" compset="InPlay">
    <usesource source="Custom"/>
    <tag group="OthAdjCat" tag="Spell"/>
    <tag group="Helper" tag="NoIncr"/>
    <tag group="Helper" tag="AdjNoPlus"/>
    <bootstrap thing="spDruidcra">
      <autotag group="Helper" tag="Free"/>
      <autotag group="Helper" tag="Cantrip"/>
      <autotag group="SpellType" tag="cHelpDrd"/>
      </bootstrap>
    <bootstrap thing="spPrestidi">
      <autotag group="Helper" tag="Free"/>
      <autotag group="Helper" tag="Cantrip"/>
      <autotag group="SpellType" tag="cHelpBrd"/>
      </bootstrap>
    <bootstrap thing="sp5CCTSOri">
      <autotag group="Helper" tag="Free"/>
      <autotag group="Helper" tag="Cantrip"/>
      <autotag group="SpellType" tag="cHelpClr"/>
      </bootstrap>
    <bootstrap thing="spMageHand">
      <autotag group="Helper" tag="Free"/>
      <autotag group="Helper" tag="Cantrip"/>
      <autotag group="SpellType" tag="cHelpWiz"/>
      </bootstrap>
    </thing>
Vex is offline   #6 Reply With Quote