#Blazebinder's Hoof trinket - doesnt shows stacks and buff duration over cd duration

4 messages · Page 1 of 1 (latest)

winter sequoia
#

Hey, trying to set weakaura for "Blazebinder's hoof" trinket to count stacks of that buff but it always shows one stack and I cant figure out how is that different than problem in post "Trigger for second stack of players buff?".

Also the timer %p doesnt shows duration of the buff but only the trinket's cd. It is made the same way (conditions and triggers) as my other weakaura for Icebound Fortitude where it works with no problem.

Since it would be a lot of screenshots Im adding the weakaura in link bellow.

https://wago.io/dXR_ESSuL

Wago.io is a database of sharable World of Warcraft addon elements

shut iron
#

your frist trigger is tracking the cooldown, as such the dynamic information comes from the cooldown trigger, either swap them around or use %2.s

#

!auracreation

teal thistleBOT
#

Here's the work flow for any Aura:

1. Think about all the info that the Aura you're trying to make will need.
2. Make a trigger for each piece of info
3. Decide which info should be sent as Dynamic Info and order the triggers accordingly.
3a. Order them so that "Dynamic Info from First Active" catches the right info, or select a specific trigger.
4. Decide which triggers need to be involved in overall activation of the Aura and change Required for Activation accordingly
4a. All (default), Any or Custom (e.g. function(t) return t[1] and (t[2] or t[3]) end) - https://github.com/WeakAuras/WeakAuras2/wiki/Aura-Activation-and-Deactivation#custom
4b. This step lets you include triggers that will be used only for Conditions but excluded from Activation entirely.
5. Make your conditions using the info from the triggers.

While working through this and building your Aura, if there's anything you're unsure of, just ask in the appropriate Help channel.