Grimblecrumb wrote:
I've one more question if you don't mind. How do you remove the little box that shows the raid difficulty at the top right?
MBF claims the newest version grabs it, however i can't find the option. It bugs the shit out of me, and I'm not sure how to make it go away.
Mishti wrote:
I started working on Pitbull last night - wasn't confirmed for 25 raid, so I had the time. I was wondering if you could share your lua for Health and Power texts. I found a couple of things just from googling on how to change color, but was curious as to how you set yours up.
Also, I'm wondering how you set up the black border surrounding each frame. At one time I had it turned on, and I turned it off because I didn't like it. Of course now I can't find that setting.
Health for Self Frame
Code:
local s = Status(unit)
if s then
return s
end
return "|cff00ff00%s/%s|r",Short(HP(unit),true),Short(MaxHP(unit),true)
Power bar for Self Frame
Code:
local max = MaxPower(unit)
if max > 0 then
return "|cff0099ff%s/%s|r ",Short(Power(unit),true),Short(max,true)
end
Health Percent for Pet, Target, and Target of Target. The mana percent is the same code, just with the Hex code changed to the blue color.
Code:
local s = Status(unit)
if s then
return s
end
return "|cff00ff00%s%%|r",Percent(HP(unit),MaxHP(unit))
The black border isnt really a border. I just set Spacing to 1 and Padding to 2. Both are under Bars>General.