View Single Post
01-06-07, 12:26 AM   #6
Nahamnessa
A Deviate Faerie Dragon
Join Date: Dec 2006
Posts: 17
To reverse/inverse the health bars you can edit the default options as per below.
You can also change this and toggle ColorClass and ColorSeverity if you wish to use class colours for health bars as opposed to the severity colours.

In the file PerfectRaid.lua search for the code
Code:
	self.headerDefaults = {
		Reverse = false,
		ColorClass = false,
		ColorSeverity = true,
	}
and for now change to:
Code:
	self.headerDefaults = {
		Reverse = true,
		ColorClass = false,
		ColorSeverity = true,
	}
[edit] Edited because this is much easier/simpler/proper way to do it than previously mentioned. Thanks for pointing out the obvious Clad

Last edited by Nahamnessa : 01-06-07 at 10:32 AM.
  Reply With Quote