• 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

Devine Spell use

chiefweasel

Well-known member
OK call me dumb, but how do I determine is the class i am creating is able to cast a specific level of devine spells? Thanks.

PS: Also how can i add a "+1 level of existing spellcasting class" as a special ability for the class? Thanks again.
 
validif (tagcount[Hero.Divine] >= X + 1)

Where X is the level of spell use required.

You can do that in the Extra Magic/Power levels button in the class tab of the editor, scroll down, it is near the bottom.
 
Cool, thanks. Now, any idea how can i check to see what deity is listed for the character? The Shadowspy prestige class requires a specific deity.
 
Awhile ago I wrote this script as a pre-req for a custom feat:

Code:
@valid = 0
var result as number

result = compare(hero.child[background].field[bDeity].text, "Somename")

if (result = 0) then
 @valid = 1
endif

I'm sure there's a better way to write it, but I don't see why this couldn't be adapted to your needs.
 
That's really not proper, since it relies on exact spelling and capitalization. Just leave the requirement as text.
 
Ya, i was worried about that as well. But i am looking for Pelor, so spelling really shouldnt be a big problem, and i could look for either instance of it, so i'll let you know how it goes.
 
Back
Top