View Single Post
02-16-15, 03:57 PM   #7
dihavs
A Murloc Raider
Join Date: Feb 2015
Posts: 5
This one here is actually printing the correct duration in "self" chatpanel but it's not showing the timer in the progressbar

Code:
function()
    local lbloom, _, _, _, _, _, expiration  = UnitAura("player", "Lifebloom", nil, "PLAYER")
    if (lbloom) then
        howlateisit = (expiration - GetTime())
        print (howlateisit)
        return (howlateisit)
    end
end
  Reply With Quote