• 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

Divine Channeler Domain Spells

Eeyore

Member
Hero Lab doesn't calculate the divine channeler's domain spells properly. A 20th level divine channeler gets three 1st, 2nd, and 3rd level and two 4th and 5th level domain spells. He gets nothing higher than that.

It looks like the problem is in the Eval Script for the domain spells. For levels 1-10 and 12-18, you have a line like this:

elseif (field[cTotalLev].value = 16) then

At level 19, you properly get:

elseif (field[cTotalLev].value >= 19) then

The problem is at level 11, where you have:

elseif (field[cTotalLev].value >= 11) then.

Because of the ">=", it never goes beyond level 11.

Is there any way to fix this? The class isn't copyable or editable.
 
Back
Top