View Single Post
01-07-11, 09:00 AM   #6
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2007
Posts: 1,710
Try adding this:
Lua Code:
  1. TextStatus_UpdateString = function() end

or if that doesnt suite the needs (as it disables text for healthbars too), try this:
Lua Code:
  1. PlayerFrameManaBar:UnregisterEvent('CVAR_UPDATE')
  2. TargetFrameManaBar:UnregisterEvent('CVAR_UPDATE')
  3. FocusFrameManaBar:UnregisterEvent('CVAR_UPDATE')

With the second one you might need to add the following, but I havent tested it.
Lua Code:
  1. PlayerFrameManaBar.TextString:Show()
  2. TargetFrameManaBar.TextString:Show()
  3. FocusFrameManaBar.TextString:Show()

Last edited by p3lim : 01-07-11 at 09:03 AM.
  Reply With Quote