I'd like to create a timer that starts counting up each time I case one of two spells. I think I have that working so far with (first screenshot).
however I'm not quite sure how to display the timer correctly.
I found an existing weak aura (https://wago.io/m7b4fnvch)from long ago that did this, but its timer function is outputting huge numbers ```function()
local timer = aura_env.timestamp - GetTime()
timer = tonumber(timer) * -1
timer = string.format("%.1f", timer)
return timer
end```
Is there a simple way to make a count up timer?