PDA

View Full Version : Racial Custom ability for naga, spellcasting


panda
April 9th, 2016, 02:29 AM
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[table].setfocus
doneif (state.isfocus = 0)
doneif (tagis[Helper.Disable] <> 0)
~ Spellcasting attribute
perform focus.setlinkage[castattr,BaseAttr,"IsAttr.aWIS"]

any idea ?

ShadowChemosh
April 9th, 2016, 08:39 AM
Your transition is not right. If you check out the 'location location location (http://forums.wolflair.com/showthread.php?t=21663)' article you see that linkage[table] only works for classes.

As you only have "one" race to get you can just do a:

perform hero.findchild[BaseRace].setfocus
doneif (state.isfocus = 0)

panda
April 9th, 2016, 09:25 AM
Thanks it works