• 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

Cleric Domain, how to...

hi.

bene, i have a class that at 3rd level gain an ability from the following choices:

1. an animal companion from the druid list, but a magical beast instead.
2. a fetish (a particular bonded object)
3. The Repose Domain
4. The Death Domain

the class is an arcane spellcaster, and, if i chose one of the domains, she gains the bonus spell per day like a druid.

i cannot figure how to add the two domain in the possible choises...

(again, sorry for the horrible english...)
 
If you go to the editor, there is a tab called Domain (I think thats the name at least). Just add the domains in there, test them and you should see them on the list to choose from.
 
He is asking how to allow a choice of those 4 options as the Death and Repose domains already exist in HL.

I am also thinking he would like to know how to have the Domain spells which are setup as Cleric spells show up for the Wizard.

My only advice here at least for the spells is to create a pair of special Domains that have the same spells that are marked to the Wizard class instead of the cleric?

Sorry I can't be more help...
 
ShadowChemosh is right, but you can make them replacements of the existing versions, rather than new things. Just use the "Allow to Archetypes" option on the Cleric Domain tab to allow them for this class (as Cleric Domains, they'll remain an option for Clerics).

For the domain spells, I'd recommend studying the Druid class - see how it's put together - see how it gains bonus spells if the user chooses a domain, as opposed to choosing the animal companion option.
 
ShadowChemosh is right, but you can make them replacements of the existing versions, rather than new things. Just use the "Allow to Archetypes" option on the Cleric Domain tab to allow them for this class (as Cleric Domains, they'll remain an option for Clerics).

thanks, i tried this one with the Repose Domain, but when i add the domain from the class i receive this warning:

Code:
Error! Domain with multiple 'allow' tags: Repose

and no secondary spell is set.

if i try to add cleric option and add a domain that is not replaced by something user-created all work perfectly.
 
I was trying to do something similar. Here's what I did.
My class has 1 free domain for free. Then they get further abilities, that includes some other stuff, plus picking another domain if they like.

For the 'custom ability' section, I set it up to allow access to cleric domains, and they get 1 at 2nd level.

In the custom ability tab I set up the class' secondary abilities. One of those abilities increased the count of primary abilities they have (gGiveSpec) in the evalscript

Code:
   hero.childfound[classID].field[cGiveSpec].value +=1

So if you pick that ability as a secondary ability, suddenly you can pick more primary abilities, which are the domains you want.
 
I was trying to do something similar. Here's what I did.
My class has 1 free domain for free. Then they get further abilities, that includes some other stuff, plus picking another domain if they like.

For the 'custom ability' section, I set it up to allow access to cleric domains, and they get 1 at 2nd level.

In the custom ability tab I set up the class' secondary abilities. One of those abilities increased the count of primary abilities they have (gGiveSpec) in the evalscript

Code:
   hero.childfound[classID].field[cGiveSpec].value +=1


So if you pick that ability as a secondary ability, suddenly you can pick more primary abilities, which are the domains you want.


thanks, but this is not what I need to do :)
 
bene, i have a class that at 3rd level gain an ability from the following choices:

1. an animal companion from the druid list, but a magical beast instead.
2. a fetish (a particular bonded object)
3. The Repose Domain
4. The Death Domain

the class is an arcane spellcaster, and, if i chose one of the domains, she gains the bonus spell per day like a druid.

i cannot figure how to add the two domain in the possible choises...

(again, sorry for the horrible english...)

That would be the Death Mage class from Super Genius Games. I've added this class too (see Death Mage class thread), except that I've run into the same issue which I'm now trying to figure out.


I tried creating a custom cleric domain from the cleric domains tab, with Death Mage set in the archetypes list. However that doesn't make the domain show up as a selectable ability. (This is a selection of secondary abilities for the class.)

I tried adding a custom ability for each of the 2 domains, with the relevant domain as a bootstrap. This shows up fine as a selectable option. However when the user chooses the ability, it generates a series of error messages like:
"Linkage pick 'table' not located for current context
Location: 'eval' script for Component 'BaseCustSp' (Eval Script '#1') near line 3"

Any further suggestions?
 
This is my second post here, but the first got caught by a moderator filter so will probably show up out of order. In any case, I now have the domains working. The trick is that cleric domains seem to only work as primary abilities, never secondary/tertiary/etc abilities. So once I swapped to make the Death Bond be the primary ability and the Pale Road be the secondary ability instead, the domains show up correctly.
 
Hello Armidale,
yes, I had already put Pale Road as the primary ability, it is not my problem.

From what I could see, every time I try to create a Domain Clerical going to replace an existing domain, using the "replaces thing id" in the editor, I always get the same error: "Error! Domain With Multiple 'allow 'tags: Repose "

It seems, in my opinion, that we can not replace the domains.
 
From what I could see, every time I try to create a Domain Clerical going to replace an existing domain, using the "replaces thing id" in the editor, I always get the same error: "Error! Domain With Multiple 'allow 'tags: Repose "

It seems, in my opinion, that we can not replace the domains.

Right. But you can add a new domain with the same name and spells but a different unique id, which is what I did.
 
Right, and that's what I did ^ _ ^

although it is "annoying".

maybe I can "hide" the real domain so that you only see the new one, but then I should also copy and re-sub domains ...
 
Right, I don't think it can be replaced. I'd prefer to hide the new one from clerics, and not sure how to do that either. In my own version today, I added an expr-req to the copies so that they're only selectable by Death Mages. So they're grayed out for clerics even though there's still visible in the list.
 
Back
Top