View Single Post
04-02-09, 01:13 PM   #2
Wimpface
A Molten Giant
 
Wimpface's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 648
Originally Posted by Spectro View Post
I'd like to hide the durability "armor guy". If there's an option in WoW, I can't find it. Could someone point me in the direction of an addon or if I'm missing the option in the default interface menu?

Thanks
Code:
DurabilityFrame:Hide()
DurabilityFrame:UnregisterAllEvents()
DurabilityFrame.Show() = function() end
That should do it, i think!

EDIT: I'm not sure if you might need this aswell.
Code:
DurabilityFrame:SetScript('OnShow', function(self) self:Hide() end)
__________________
All I see is strobe lights blinding me in my hindsight.

Last edited by Wimpface : 04-03-09 at 02:03 PM.
  Reply With Quote