looking for a stack check...

kombat

Spammer
Joined
Feb 25, 2007
Messages
66
Reaction score
0
Points
0
im looking for 2 kinds of checks..

..with my druid who is buffing to do a stack check....(so im not spaming DS recasts).

...and with my necro to do a stack and timer check for snare, so i can recast snare again before it runs out..

..thanks in advance..ive had a little look around but not too sure what im looking for..

...im able to check stack and timer on my own buffs, just not others or mobs. :).
 
/echo ${Target.BuffDuration[${Target.DSed}]}
/echo ${Target.BuffDuration[${Target.Snared}]}

Basically this:

Code:
/if (${Target.BuffDuration[${Target.Snared}].TotalSeconds}>20) {
    /echo we don't need to do anything it's snared already
} else {
    /echo we need to recast snare
}

And:
Code:
/if (${Target.BuffDuration[${Target.DSed}].TotalSeconds}>20) {
    /echo we don't need to do anything it's damage shielded already
} else {
    /echo we need to recast damage shield
}
 
Last edited: