• 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

Racial Custom ability for naga, spellcasting

panda

Well-known member
I have created 2 Racial custom abilities for the Bone naga, it's spellcasting depends on the naga it was during his life.
In the custom ability I try to link the correct castattr, I've done this script but something is missing as it can't find the table.

perform linkage
.setfocus
doneif (state.isfocus = 0)
doneif (tagis[Helper.Disable] <> 0)
~ Spellcasting attribute
perform focus.setlinkage[castattr,BaseAttr,"IsAttr.aWIS"]

any idea ?
 
Your transition is not right. If you check out the 'location location location' article you see that linkage
only works for classes.

As you only have "one" race to get you can just do a:
Code:
perform hero.findchild[BaseRace].setfocus
doneif (state.isfocus = 0)
 
Back
Top