View Single Post
11-03-22, 01:31 PM   #2
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2006
Posts: 2,326
Lua Code:
  1. hooksecurefunc("TextStatusBar_UpdateTextStringWithValues",function(self,text,val,min,max)
  2.     if self==TargetFrameHealthBar and max>0 and (val>0 or not self.zeroText) then
  3.         if self.LeftText then self.LeftText:Hide(); end
  4.         if self.RightText then self.RightText:Hide(); end
  5.  
  6.         text:SetFormattedText("%s (%d%%)",AbbreviateLargeNumbers(val),math.ceil(100*val/max));
  7.         text:Show();
  8.     end
  9. end);
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)
  Reply With Quote