• 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

Way to prepare a spell in a higher-level slot?

Zan Thrax

Well-known member
Is there any mechanism in the program to prepare a spell in a higher level slot than normal without metamagic? It's allowed within the rules, but it's inconvenient to prepare two first level domain spells and leaving the second level slot empty as it leads to Hero Lab throwing flags about it.
 
This is on the to-do list. The workaround is to use two copies of the Spells Cast per Day adjustment - one to subtract from the higher level, the other to add to the lower level.

There isn't an adjustment yet to do that for domain spells, I'm sorry to say.
 
I made a new Metamagic called Higher Level that has no pre-req (no feat required) that allows you to choose a higher spell level, similar to heighten magic, but it does not increase DC. You have to add the spell as a custom/metamagic spell, but then choose the 'Higher Level' metamagic, and choose how many slots higher you want to add it. You then end up with:

0 Daze (DC 11)
1 Higher daze (DC 11)
2 Higher daze (DC 11)

HigherLevel.user
Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<document signature="Hero Lab Data">
  <thing id="mmFUZHiLvl" name="Higher Level" description="Alows preparing a lower level spell in a higher level spell slot." compset="Metamagic" summary="Place a spell in a higher spell slot" uniqueness="unique">
    <fieldval field="mmLevel" value="1"/>
    <fieldval field="mmAbbr" value="Higher"/>
    <tag group="Helper" tag="CustomMeta" name="CustomMeta" abbrev="CustomMeta"/>
    </thing>
  </document>
 
Back
Top