FluffyDingo
Well-known member
Trying to condense my Form of the Dragon spell modifiers, and running into a bit of a hitch. I'm using "component.SelectHelp & Selection.DragonDisc" to provide the drop list of dragon types, but all I know how to pull for tags is BloodEner and abArea, when I need to be able to pull what type of dragon is being selected. I'm not sure an actual dragon type is stored there, since every other ability just cares about energy type and breath area, so I will likely need to pull the name string itself, but I do not know how to do this. I assume some sort of code like:
except where [livename.?] is something I don't know.
Hopefully someone knows!
Code:
var dragon as string
if (field[pChosen].ischosen <> 0) then
perform field[pChosen].chosen.pulltags[livename.?]
dragon = field[pChosen].chosen.tagnames[livename.?]
endif
except where [livename.?] is something I don't know.
Hopefully someone knows!