Thread Tools Display Modes
03-24-15, 08:39 AM   #1
Massiveunit
A Black Drake
 
Massiveunit's Avatar
Join Date: Mar 2013
Posts: 81
Question

On my mage when i use rune of power, there a icon that appears under my player unit frame. Wondering if there's a way to disable it. Don't want to use it. I have power aura set up for it.
Thanks,
Mike
  Reply With Quote
03-25-15, 02:46 PM   #2
Gethe
RealUI Developer
 
Gethe's Avatar
Premium Member
Featured
Join Date: Sep 2008
Posts: 942
There is not an option for it at the moment, but if you're feeling adventurous you can edit the file at nibRealUI\HuD\UnitFrames\Units\Player.lua

Find this section, and add two dashes (--) in front of "CreateTotems(self)":
Lua Code:
  1. UnitFrames["player"] = function(self)
  2.     self:SetSize(info[UnitFrames.layoutSize].x, info[UnitFrames.layoutSize].y)
  3.  
  4.     CreateHealthBar(self)
  5.     CreatePredictBar(self)
  6.     CreatePvPStatus(self)
  7.     CreatePowerBar(self)
  8.     CreatePowerStatus(self)
  9.     CreateStats(self)
  10.     CreateEndBox(self)
  11.     --CreateTotems(self)

NOTE: This will remove the totem display for all toons, including shaman if you have any.
__________________
Knowledge = Power; Be OP

  Reply With Quote
03-31-15, 03:40 PM   #3
Massiveunit
A Black Drake
 
Massiveunit's Avatar
Join Date: Mar 2013
Posts: 81
Originally Posted by Gethe View Post
There is not an option for it at the moment, but if you're feeling adventurous you can edit the file at nibRealUI\HuD\UnitFrames\Units\Player.lua

Find this section, and add two dashes (--) in front of "CreateTotems(self)":
Lua Code:
  1. UnitFrames["player"] = function(self)
  2.     self:SetSize(info[UnitFrames.layoutSize].x, info[UnitFrames.layoutSize].y)
  3.  
  4.     CreateHealthBar(self)
  5.     CreatePredictBar(self)
  6.     CreatePvPStatus(self)
  7.     CreatePowerBar(self)
  8.     CreatePowerStatus(self)
  9.     CreateStats(self)
  10.     CreateEndBox(self)
  11.     --CreateTotems(self)

NOTE: This will remove the totem display for all toons, including shaman if you have any.
Thank u, works great...143
  Reply With Quote

WoWInterface » Featured Projects » RealUI » Question


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off