• 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

Spell List

Cool, seems to work, here is the script

perform hero.childfound[cHelpMAH].assign[sClass.cHelpWit]
 
Have you studied the effects of schools and domains? What tags are added to the class when you add those? Can you add the same tags in a script?

Oh, and
Code:
linkage[table].
will transition to whatever class added a custom class ability (it doesn't work in many places other than a custom class ability) - that can replace
Code:
hero.childfound[cHelpMAH].
so that if you want to re-use this ability for a second class, you don't have to re-work the script to figure out which of those classes it was added to.
 
When you add those custom abilities you're trying to make variants of, what tags are added to the class? You need to figure out how the thing you're trying to make a variant of functions before you can create that variant.
 
Hum, basicly it's a copy of the arcane schools, (like Abjuration), and insted of the special abilities, I want it add to the spellcaster known spells, from Abjuration type
 
Are you familiar with the Red Mantis Assassin prestige class? I think that may have an Eval Script that's what you're looking for.
 
It looks like it would work, but the error I get is

Attempt to access field 'cSpellExpr' that does not exist for thing 'cMPAAbjura'
 
Still getting the same error the script is:

hero.childfound[cHelpMAH].field[cSpellExpr].text = "(" & field[cSpellExpr].text & ") | ((sClass.cHelpSor | sClass.cHelpWiz) & (sSchool.Illusion | sSchool.Transmutat))"

BTW - Thank you
 
That is it:

hero.childfound[cHelpMAH].field[cSpellExpr].text = "(" & hero.childfound[cHelpMAH].field[cSpellExpr].text & ") | ((sClass.cHelpSor | sClass.cHelpWiz) & (sSchool.Illusion | sSchool.Transmutat))"

Thank You!
 
BTW - what are the script name for: Abjuration, Conjuration, and Enchantment. I think the name is too long and I get an error. All the other schools work great, Thank you again.
 
Back
Top