View Single Post
01-05-07, 07:22 PM   #4
qat
A Murloc Raider
Join Date: Jan 2007
Posts: 4
Originally Posted by krinla
-- How do I show mana bars?

Look for the following code in PerfectRaid.lua and uncomment the bar:Hide() line:

Code:
local bar = CreateFrame("StatusBar", nil, button.healthbar)
	bar:SetPoint("BOTTOMLEFT", 0, 0)
	bar:SetPoint("BOTTOMRIGHT", 0, 0)
	bar:SetHeight(2)
	bar:SetStatusBarTexture("Interface\\AddOns\\PerfectRaid\\images\\smooth")
	button.manabar = bar
	bar:Hide()
I think you meant to say that we should comment out that line if we want mana bars. So have "-- bar:Hide()"


-Qat
  Reply With Quote