Trying to build my own weakaura for a trinket "Burgeoning Seed".
Which "Consume Brimming Life-Pod to gain 109 Versatility and 9641 Maximum Health per stack consumed. Lasts 12 sec. (30 Sec Cooldown)" --
i want to track how much health it would generate based on a health bar.
I found the aura - "Brimming Life-Pod (384646)" but i am only able to track the cooldown.
I don't know how to track the info of generated Health and versatility.
Can someone help?
#Burgeoning Seed Trinket - Generate Health Tracking
7 messages · Page 1 of 1 (latest)
If the aura has the vers and maxhealth info in the tooltip you can grab it from there otherwise, check Stack Count in your trigger for the aura. Then use a custom function for the text multiplying the trinket values by %s.
The tooltip gives the info, but i don‘t know how to grab it from there. What is the command to use?
The function is a good idea, i am able to track the stack count too. So that is something i can try.
However still wondering how to grab the info of the health from the tooltip
!tooltip
To get a value from a buff or debuff's tooltip (the absorb amount on a shield buff for example), tick "Use Tooltip Info" in the buff trigger. This will have WeakAuras grab the whole tooltip, which can be accessed as %tooltip, and also the first three number values from the tooltip will be extracted and set as %tooltip1, %tooltip2 and %tooltip3.
If you need to manipulate any of these in code then they can be access in Custom Text with aura_env.states[triggerNumber].tooltip1. But the Format Options settings in Display will probably handle most of what you would need.