I am working on a feat that is pretty much mechanically the same thing as the Elemental Spell Feat. Both Metamagic, both allow the user to select the Energy type for the item.
Looking at the Eval Scripts, the Elemental Spell does the following:
~ If we're disabled, do nothing
doneif (tagis[Helper.FtDisable] <> 0)
if (field[usrChosen1].ischosen <> 0) then
perform field[usrChosen1].chosen.assign[Broadcast.ElemSpl]
perform field[usrChosen1].chosen.assign[Duplicate.ElemSpl]
endif
Then on the Metamagic Adjustments for Acid it does this on the Expr Reqs:
hero.childfound[selEnAcid].tagis[Broadcast.ElemSpl] + parent.tagis[Helper.OnScroll] <> 0
What does the Broadcast do and how is it setup? Somewhere I appear to be missing a piece, as I was essentially trying to replicate this for the feat I was working on. I looked in the various help resources I could find but couldn't find anything about this Broadcast function and what it does.
Any help?
Thanks.
Looking at the Eval Scripts, the Elemental Spell does the following:
~ If we're disabled, do nothing
doneif (tagis[Helper.FtDisable] <> 0)
if (field[usrChosen1].ischosen <> 0) then
perform field[usrChosen1].chosen.assign[Broadcast.ElemSpl]
perform field[usrChosen1].chosen.assign[Duplicate.ElemSpl]
endif
Then on the Metamagic Adjustments for Acid it does this on the Expr Reqs:
hero.childfound[selEnAcid].tagis[Broadcast.ElemSpl] + parent.tagis[Helper.OnScroll] <> 0
What does the Broadcast do and how is it setup? Somewhere I appear to be missing a piece, as I was essentially trying to replicate this for the feat I was working on. I looked in the various help resources I could find but couldn't find anything about this Broadcast function and what it does.
Any help?
Thanks.