Before Wod you were able to in the interface options split out the status text for your own personal health bar, and your target health bar.
Currently on the interface you only get the options to change both of these (numeric, percentage, both, none). I have exclusively played with never showing my own health bar, but showing both percentage and numeric values on my target.
Years ago i found a helpful forum thread that was able to create an addon to remedy this change so it shows as i specified above, but since unfortunately, due to losing my addon files this has now been misplaced and I’m not techy enough to figure it out myself. Any help would be massively appreciated.
If the below helps, i found something that works for showing the status text for the numeric value, and the percentage, but this does not work when i choose to display both, which is how i used to have it.
local function alphaText(self,alpha)
local stub = (self:GetName() or “”):match("(.-Frame)")
if stub then
_G[stub…“HealthBar”].TextString:SetAlpha(alpha)
_G[stub…“ManaBar”].TextString:SetAlpha(alpha)
end
end
local function showText(self)
alphaText(self,1)
end
local function hideText(self)
alphaText(self,0)
end
local function hookFrame(frameName)
_G[frameName]:HookScript(“OnEnter”,showText)
_G[frameName]:HookScript(“OnLeave”,hideText)
_G[frameName…“HealthBar”]:HookScript(“OnEnter”,showText)
_G[frameName…“HealthBar”]:HookScript(“OnLeave”,hideText)
_G[frameName…“ManaBar”]:HookScript(“OnEnter”,showText)
_G[frameName…“ManaBar”]:HookScript(“OnLeave”,hideText)
hideText(_G[frameName])
end
hookFrame(“PlayerFrame”)
hookFrame(“PetFrame”)
hookFrame(“FocusFrame”)