GridStatusLifebloom
Custom status indicator for grid to show the time remaining on your own lifebloom. The timer is color coded to indicate how many stacks of lifebloom there is (you can either use only the color as corner icon or the timer as center text).
The mod uses ace libraries so it should be compatible with different language versions of WoW (texts haven't been localized though).
Also if I change the Lifebloom duration to Frame Alpha, the entire grid frame disappears w/ a single stack, but reappears after the stack goes away or if I put 2-3 stacks on the target.
Code:
local name, rank, icon, count, debuffType, duration, expirationTime, isMine, isStealable = UnitAura(unitid, spellNameLifebloom, nil, "HELPFUL|PLAYER")
if (isMine and duration) then
local startTime = expirationTime - duration
Change to:
Code:
local name, rank, icon, count, debuffType, duration, expirationTime, isMine, isStealable = UnitAura(unitid, spellNameLifebloom, nil, "HELPFUL|PLAYER")
if (isMine =="player" and duration) then
local startTime = expirationTime - duration
The change is that the isMine check needs to be isMine =="player"
I absolutely love this addon so if a 3.1 version could arrive I'd be a very happy tree :)
Grid-1.30000.2009011501
GridStatusLifebloom-v3.00.08.04_release
http://www.wowace.com/projects/grid-status-lifebloom/tickets/1-fix-for-wow3-0-2/
Hopefully Anaram (the addon author) will post a "real" release; otherwise I'll start a new project with the fix.