WA proc tracker

Making a weakaura to track a proc.
Precise Shots makes your next 1 or 2 Arcane Shots deal more damage.
Trigger
aura
buff
found

Works great. But, I want it to desaturate if I don’t have enough focus.
Trigger 2
player
power
focus
<20

Condition
All
trigger 1 active true
trigger2 active true
desaturate

The problem is, this is making the icon show any time I’m below 20 focus, even if precise shots buff is not active. Not sure what I’m doing wrong.

Sounds like you only want it to show or hide based on the 1st trigger alone and use the 2nd to control the desaturation.

Change the “required for activation” drop down option from All triggers to a custom function with the function below.

function(triggers)
return triggers[1]
end

The condition for desaturation only needs to use trigger2 and make sure you have the checkbox that appears to the right of desaturate checked (this makes it desaturate = true)

1 Like