#How can I make a weakaura that tracks the heal/10sec from this gem?
15 messages · Page 1 of 1 (latest)
You'd just have to find out the spell ID of the heal
Make a new aura -> bar
Go to trigger, Combat Log -> Spell -> Heal.
Destination unit player, spell ID what you have there
Timed hide 10s
In the future, you can easily find out the correct thing to track for stuff like that like this:
!etrace
See this message #pins message for info on tracking the various game events fired by the API
!cleu
https://warcraft.wiki.gg/wiki/COMBAT_LOG_EVENT
function(event, timestamp, subEvent, hideCaster, sourceGUID, sourceName, sourceFlags, sourceRaidFlags, destGUID, destName, destFlags, destRaidFlags, ...)
You can use this Aura, https://wago.io/CLEU-IN-ETRACE (works fine in all game versions, not just retail), to add the detailed into into the Etrace tool.
For more info on Events and Etrace see #pins message
It'd tell you what kind of combat log event it is (e.g. SPELL_HEAl), whether you can use dest unit/source unit, the spell ID, etc.
Sometimes things work unintuitively, mby it's not SPELL_HEAL but something else
Always better to check than to guess
Yeah then the combat log trigger isn't correct
Here
Just do the /etrace stuff and finc out exactly what you need to track