• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Timing Bootstap Condition

Frodie

Well-known member
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 got it to work. The issue was there was another script doing a calcination later on in the timing that needed to happen before it could assign the tag. Anyways I changed that and a few other things and all is good now.
 
Back
Top