Ok, this is a rough one. I have on a tracker a script that gives a caster tag to the hero. Runs at final 5000 and works great. On a Configurable I have a bootstrap of the familiar abilities that have a bootstrap condition that checks for the number of hero.caster tags. It runs at First 2500.
I can't get the bootstrap to show up unless I change the timing of the tracker script to below First 2500. But if I do that, it will not assign the caster tags.
The bootstrap condition will not let me go higher than First 2500.
Any ideas? Below is the script on the tracker and then the bootstrap condition
Tracker - Final 5000
~ Now set the Max Caster Level
herofield[tMaxCaster].value += #trkmax[trkNNWCrLv]
~ Now set Caster Tags.
var iX as number
~Add number of tags here
for iX = 1 to #trkmax[trkNNWCrLv]
perform hero.assign[Hero.Caster]
next
The Configurable is various bootstraps from the familiar abilities, like Scry on Familiar cArcFScry
Bootstrap condition - First 2500
count:Hero.Caster >= 13
I can't get the bootstrap to show up unless I change the timing of the tracker script to below First 2500. But if I do that, it will not assign the caster tags.
The bootstrap condition will not let me go higher than First 2500.
Any ideas? Below is the script on the tracker and then the bootstrap condition
Tracker - Final 5000
~ Now set the Max Caster Level
herofield[tMaxCaster].value += #trkmax[trkNNWCrLv]
~ Now set Caster Tags.
var iX as number
~Add number of tags here
for iX = 1 to #trkmax[trkNNWCrLv]
perform hero.assign[Hero.Caster]
next
The Configurable is various bootstraps from the familiar abilities, like Scry on Familiar cArcFScry
Bootstrap condition - First 2500
count:Hero.Caster >= 13