stargazer_dragon
Well-known member
I want to redo this code to set it to Air elemental type automatically and to set it to check Character level instead of Class Level. Is being used with elemental Strike Bloodrager power that is being granted to a specific race in the form of a racial feat. -- Power ID is -- cBlrElStrk -remaking the class power into a Racial power that basicaly does the same thing. Other parts of the blood line will also be used for other feats.
if (field[xIndex].value>= 3) then
field[listname].text = field[thingname].text & " (Constant)"
elseif (field[xIndex].value>= 3) then
field[listname].text = field[thingname].text & " (5/day)"
else
field[listname].text = field[thingname].text & " (3/day)"
endif
~if we're not the first copy, just get out now
doneif (tagis[Helper.FirstCopy] = 0)
~if we're not shown, just get out now
doneif (tagis[Helper.ShowSpec] = 0)
~ Pull the blood energy tag from our root
perform root.pulltags[BloodEner.?]
var element as string
element = tagnames[BloodEner.?]
field[abSumm].text ="As swift action, your melee attacks do an additional 1d6 of " & element & " damage."
if (field[xCount].value>= 3) then
perform delete[User.Tracker]
perform tagreplace[Usage.?,Usage.Constant]
elseif (field[xCount].value>= 2) then
field[trkMax].value += 5
else
field[trkMax].value += 3
endif
if (field[xIndex].value>= 3) then
field[listname].text = field[thingname].text & " (Constant)"
elseif (field[xIndex].value>= 3) then
field[listname].text = field[thingname].text & " (5/day)"
else
field[listname].text = field[thingname].text & " (3/day)"
endif
~if we're not the first copy, just get out now
doneif (tagis[Helper.FirstCopy] = 0)
~if we're not shown, just get out now
doneif (tagis[Helper.ShowSpec] = 0)
~ Pull the blood energy tag from our root
perform root.pulltags[BloodEner.?]
var element as string
element = tagnames[BloodEner.?]
field[abSumm].text ="As swift action, your melee attacks do an additional 1d6 of " & element & " damage."
if (field[xCount].value>= 3) then
perform delete[User.Tracker]
perform tagreplace[Usage.?,Usage.Constant]
elseif (field[xCount].value>= 2) then
field[trkMax].value += 5
else
field[trkMax].value += 3
endif