I've got a Custom Ability for an Oracle that grants them a spell like ability from the wizard/sorcerer list. Great I copy Major Magic from the Rogue. But then the next thing is that you can take it multiple times but can't take it for the same spell twice.
I say great, it's like spell focus so I go grab this eval rule from Spell Focus
I see that it assigns the Helper.Duplicate tag if it's the same one that's selected, but it appears that it decides that through a procedure that I'm not sure what it does, and the name looked like it might be specifically for spell focus.
So trying to figure out how to add the Helper.Duplicate tag if the SpInfo matches on two different selections of this ability and I'm guessing I also need to figure out what the panelvalid id is for the oracle class tab since doing something on the feats panel would be kinda useless.
If there's a Custom Ability that already does that that I could copy, great, but I don't know it.
Thanks for any help,
Andrew
I say great, it's like spell focus so I go grab this eval rule from Spell Focus
Code:
~ If we're not shown, just get out now
doneif (tagis[Helper.ShowSpec] = 0)
@valid = 1 - tagis[Helper.Duplicate]
if (@valid = 0) then
hero.panelvalid[feats] = 0
endif
I see that it assigns the Helper.Duplicate tag if it's the same one that's selected, but it appears that it decides that through a procedure that I'm not sure what it does, and the name looked like it might be specifically for spell focus.
So trying to figure out how to add the Helper.Duplicate tag if the SpInfo matches on two different selections of this ability and I'm guessing I also need to figure out what the panelvalid id is for the oracle class tab since doing something on the feats panel would be kinda useless.
If there's a Custom Ability that already does that that I could copy, great, but I don't know it.
Thanks for any help,
Andrew