I am trying to validate the sArea field on a metamagic feat but I keep getting an error. The metamagic is valid if the spell has a range of personal, touch, or has an area. Here is what I have so far.
if (tagis[sRange.Personal] + tagis[sRange.Touch] + <> 0) then
@valid = 1
elseif (?.field[sArea.Area] <>0)
@valid = 1
endif
I hope I am not too far off base with this (if I am I understand even less then I thought).
if (tagis[sRange.Personal] + tagis[sRange.Touch] + <> 0) then
@valid = 1
elseif (?.field[sArea.Area] <>0)
@valid = 1
endif
I hope I am not too far off base with this (if I am I understand even less then I thought).