View Single Post
07-25-18, 09:10 PM   #1
Heather00724
A Defias Bandit
Join Date: Oct 2008
Posts: 2
Stuf Unit Frames - Display Res Status

I'm switching over to Stuf Unit frames and am trying to make it show if the party member has a rez pending.

I'd like it to show the resurrecting Icon from default Blizzard Raid Frames. I started with trying to just make it say Pending or Not Pending.

So far I've managed this, and it doesn't work.

function(unit)
if UnitExists(unit) and UnitHasIncomingResurrection then return "Pending" else return "not pending"
end
end
Any help would be appreciated.
  Reply With Quote