• 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

Spell Slot Array?

Morphaeon

New member
Hello!

I'm trying to make a subclass that has spellcasting as a 3rd caster. The problem is, the spell slots per level are wrong. I know there are arrays for Spells Known, Cantrips Known, and Max Spell Levels. Is there an array of the spell slots too? Or does anyone know how I would change the spell slots per level?

Thanks in advance!
 
This caught me at first also. I believe that you spellcasting slots are auto-calculated by the line: "perform focus.assign[Helper.3rdCaster]".
All spellcasting classes (save the warlock) advance along the same progression for spell slots, and "Helper.3rdCaster" means we add 1/3 our levels towards that. The other options for this are "Helper.HalfCaster" (half levels like the ranger) and "Helper.FullCaster" (full levels like the cleric).

The above quote is directly from the 'Tutorial 6 - Adding Spellcasting'. From what I understand, your spellcasting slots are pre-defined by the Helper tags list in the quote.

I believe you can modify the number of slots by using a line like: hero.child[SlotHold3].field[MaxAllow].value += 1 (this should 1 3rd level casting slot I believe).

I hope this helps.
 
Back
Top