• 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

Extra Domains

SabreRabbit

New member
Greetings!

I am creating a custom prestige class for one of my players (Druid). The prestige class allows the character to gain new domains.

I am hitting a snag with the domains. I can add them to the class, and the option appears, but only one extra domain can be added. Furthermore, the prestige class does not have access to the domain spells.

So, any thoughts? Thank you in advance for your help.

-SabreRabbit
 
When you say that only one extra domain can be added, you mean there's a validation error if you add more than one domain?

In the "Custom Ability Count" option, how many of that ability are you allowing? (Remember to enter the total number of that ability that can be selected, not the change at this level - 1, then 2, then 3, instead of 1, 1, and 1).

In the "Secondary Spell Classes" option, you'll probably need to select "Cleric" in order to allow this class access to the secondary spells of a cleric. Check the other options in the "Secondary Spells" section to make sure they're the same as the cleric class.
 
Sorry, I should have pointed you to the Druid, not the cleric - this is a case where, like the Druid, you're adding in the capabilities of a cleric.

Go to the Eval Scripts button for the class, create a new Eval Script, and paste this in:

Code:
      ~if we have a domain, we get 1 domain spell per level
      if (tagis[SecClsAllw.?] <> 0) then
        field[cSecSplReq].value += 1
        endif

Now, at the top, you'll see a drop-down labeled "Phase" - change that value to "Pre-Levels", and you'll see a box next to that labeled "Priority" - change that to 11000.

Within the "Secondary Spells" section of the editor options, the only thing you'll need to do is set "Secondary Spell Name" to "domain spells"
 
If I am try to do this in an Archetype, how is it done. There is no "Secondary Spell Name"
I am trying to give a Socerer the evil domain and spells.
 
I'm afraid archetypes aren't currently set up to modify the secondary spells of a class. This is on my to-do list.
 
Back
Top