• 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

Boot strapping a feat to a god for clerics only

jbearwillis

Well-known member
What I am wanting to do is to boot strap a feat to a deity, so when you pick the deity you get the feat, but only if your a cleric and no other class. I know how to boot strap but I don't know how to put a script in to look for the cleric class only to give it. So if you pick the deity and your any other class but cleric it won't give it to the character, but if you are a cleric of the deity it will. Any help would be most appreciated.
 
Last edited:
Is there a certain number of cleric levels required before you get this feat? Do you have to be a pure cleric, or could you be a 15th level fighter, 1st level cleric and get it?

What you'd want to do is bootstrap the feat to the deity with a bootstrap condition counting the number of Classes.Cleric tags on the hero.

Look at the way different class abilities bootstrap certain bonus feats at levels higher than first for an example of Bootstrap conditions counting Classes tags.
 
Yes anyone with a cleric level or levels of that deity and not an ex-member of said deity gets it. You can be multi-classed
 
Then what you need to do is go to the Bootstraps for that deity, and then click on the Conditions button to the right of the bootstrapped feat, and add this tag expression, at First 2500

count:Classes.Cleric >= 1 & count:ExMember.cHelpClr = 0

That basically says "If we have 1 or more Cleric Class tags on our hero, AND we have 0 Cleric ExMember tags on the hero, then we are satisfied and should add the feat."
 
Thanks a lot Aaron, that's what I needed. I had been trying so many things in the editor to get it to work - seems I over think things to much. LOL
 
Just FYI the program said I had to set it at First 2380 - I believe it said that was the latest it could be set, so I set it at that and it worked.
 
Fair enough, as long as it is after First 1600, that's when the ExMember tags are forwarded to the hero.
 
Back
Top