Thread Tools Display Modes
01-11-07, 11:14 AM   #221
Minou
A Fallenroot Satyr
Join Date: Jan 2006
Posts: 27
This is from fresh install b77, old savedvariables .lua deleted,too:

I scaled down Praid to 75 and I am getting double raid windows now.
One that scales and show only group 1 and another one that stays at 100%


And one error when trying to save hacks/sizing: /PerfectRaid.lua: 121: attempt to perform arithmetic on local 'x' (a NIL value)

Last edited by Minou : 01-11-07 at 11:29 AM.
  Reply With Quote
01-11-07, 11:18 AM   #222
bluerose
A Murloc Raider
Join Date: Jan 2007
Posts: 6
Been in 10+ AV's since i installed r77 and each time i've had to reload the UI at the start in order to display the current players in the raid instead of those from my previous BG.
  Reply With Quote
01-11-07, 11:37 AM   #223
Cladhaire
Salad!
 
Cladhaire's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Jul 2005
Posts: 1,935
Originally Posted by acidx
Curious as to why all the bar colors were changed to the colors of their respective classes instead of the usual green color, is there an option to change this that i am missing or is this an intended change.
In PerfectRaid.lua change:

Code:
	self.headerDefaults = {
		Reverse = false,
		ColorClass = false,
		ColorSeverity = true,
	}
I.e. make ColorSeverity true, and ColorClass false.
__________________
"There's only one thing that I know how to do well and I've often been told that you only can do what you know how to do well, and that's be you-- be what you're like-- be like yourself. And so I'm having a wonderful time, but I'd rather be whistling in the dark..."
  Reply With Quote
01-11-07, 11:37 AM   #224
Cladhaire
Salad!
 
Cladhaire's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Jul 2005
Posts: 1,935
Originally Posted by bluerose
Been in 10+ AV's since i installed r77 and each time i've had to reload the UI at the start in order to display the current players in the raid instead of those from my previous BG.
Very odd.. no errors at all?
__________________
"There's only one thing that I know how to do well and I've often been told that you only can do what you know how to do well, and that's be you-- be what you're like-- be like yourself. And so I'm having a wonderful time, but I'd rather be whistling in the dark..."
  Reply With Quote
01-11-07, 11:41 AM   #225
Cladhaire
Salad!
 
Cladhaire's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Jul 2005
Posts: 1,935
Originally Posted by Minou
This is from fresh install b77, old savedvariables .lua deleted,too:

I scaled down Praid to 75 and I am getting double raid windows now.
One that scales and show only group 1 and another one that stays at 100%


And one error when trying to save hacks/sizing: /PerfectRaid.lua: 121: attempt to perform arithmetic on local 'x' (a NIL value)
Ack I broke scaling.. sorry about that.. I'll do what I can to get that fixed tonight.
__________________
"There's only one thing that I know how to do well and I've often been told that you only can do what you know how to do well, and that's be you-- be what you're like-- be like yourself. And so I'm having a wonderful time, but I'd rather be whistling in the dark..."
  Reply With Quote
01-11-07, 11:45 AM   #226
bluerose
A Murloc Raider
Join Date: Jan 2007
Posts: 6
Originally Posted by Cladhaire
Very odd.. no errors at all?
None what so ever. Reloading the UI is no worry till its fixed, but two columns makes me a sad panda. :P /fingers crossed
  Reply With Quote
01-11-07, 12:17 PM   #227
Kitami
A Murloc Raider
 
Kitami's Avatar
Join Date: Jan 2007
Posts: 8
Originally Posted by bluerose
r77 does not seem to want to be hacked into one column. >.<

Edit: Looking at the release notes its stated this version was supposed to come as the one column. o.o
But it does not ... at lest not on my client.

I had to change
Code:
column:SetAttribute("maxColumns", 2)
column:SetAttribute("unitPerColumn", 20)
to
Code:
column:SetAttribute("maxColumns", 1)
column:SetAttribute("unitPerColumn", 40)
to geht a one column setup

Last edited by Kitami : 01-11-07 at 12:34 PM.
  Reply With Quote
01-11-07, 12:20 PM   #228
Gungolf
A Fallenroot Satyr
Join Date: Mar 2006
Posts: 23
I guess there will be people who want it sorted by class and others by group, so we'll just have to wait for it to be configurable -- I hope...

My efforts to change the sorting order to group unfortunately only resulted in some random order.
  Reply With Quote
01-11-07, 12:25 PM   #229
bluerose
A Murloc Raider
Join Date: Jan 2007
Posts: 6
Originally Posted by Kitami
But it does not ... at lest not on my client.

I had to change

to

to geht a one column setup
:bow:

This works!
  Reply With Quote
01-11-07, 12:33 PM   #230
Kitami
A Murloc Raider
 
Kitami's Avatar
Join Date: Jan 2007
Posts: 8
Originally Posted by Cladhaire
Ack I broke scaling.. sorry about that.. I'll do what I can to get that fixed tonight.
To fix scaling:

Open the PerfectRaid_Hacks.lua and search
Code:
	for i=1,8 do
		local name = "PRHeader"..i
		local button = getglobal(name)
		if button then
			button:SetScale(scale)
		end
	end
	PerfectRaid:RestorePosition("PRHeader1")
and replace it with
Code:
--[[	for i=1,8 do
		local name = "PRHeader"..i
		local button = getglobal(name)
		if button then
			button:SetScale(scale)
		end
	end
	PerfectRaid:RestorePosition("PRHeader1")
--]]
	
	local name = "PRHeaderColumn"
	local button = getglobal(name)
	if button then
		button:SetScale(scale)
	end
	PerfectRaid:RestorePosition("PRHeaderColumn")
(Not really tested, but works for me)

btw: I hope the group number before the name if sorted by class will be back in the final relase ... it always helped me a lot and it doesn't really take much space.

Last edited by Kitami : 01-11-07 at 12:55 PM.
  Reply With Quote
01-11-07, 12:41 PM   #231
Ceph
A Deviate Faerie Dragon
Join Date: Jan 2007
Posts: 15
...just been at an Ony raid, where we wiped... figured out that it would be nice to have "Spirit of Redemption" in the buff settings' defaults.
  Reply With Quote
01-11-07, 01:58 PM   #232
Kitami
A Murloc Raider
 
Kitami's Avatar
Join Date: Jan 2007
Posts: 8
Hmmm ... i just tested r77 in Naxx ... I still have the problem that my framrate drops about 30% when praid is active.
  Reply With Quote
01-11-07, 02:03 PM   #233
Cladhaire
Salad!
 
Cladhaire's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Jul 2005
Posts: 1,935
O.o

I've never heard of any problems like that with PerfectRaid. This is with Aggro and Range checking disabled? Those features are far from free. The mod itself should be no more expensive than the default blizzard raid UI.

If you enable perfectraid (/script EnableAddOn("PerfectRaid")) and reload, you see a 30% drop, then if you disable it (/script DisableAddOn("PerfectRaid")) you see your normal framerate?
__________________
"There's only one thing that I know how to do well and I've often been told that you only can do what you know how to do well, and that's be you-- be what you're like-- be like yourself. And so I'm having a wonderful time, but I'd rather be whistling in the dark..."
  Reply With Quote
01-11-07, 02:22 PM   #234
Kitami
A Murloc Raider
 
Kitami's Avatar
Join Date: Jan 2007
Posts: 8
Looks like it's the aggro-check. Without it the framedrops is gone.

I also have sRaidFrames still active at the moment. Cold it be that there's a problem between them to?
  Reply With Quote
01-11-07, 02:35 PM   #235
Cladhaire
Salad!
 
Cladhaire's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Jul 2005
Posts: 1,935
Not _between_ them, but with both of them, you're doing twice as much work all the time. You also don't need to DISABLE aggro checking, you can simply slow the rate at which it checks down a bit.

Good news, I just found a bug that will speed it up a bit. I'll get that in tonight.
__________________
"There's only one thing that I know how to do well and I've often been told that you only can do what you know how to do well, and that's be you-- be what you're like-- be like yourself. And so I'm having a wonderful time, but I'd rather be whistling in the dark..."
  Reply With Quote
01-11-07, 04:26 PM   #236
IcedEarth
A Defias Bandit
Join Date: Jan 2007
Posts: 3
I got the same problem
Erased everything about PerfectRaid
And I still see "groupe1" + the whole raid sort by class

And is there anyway to sort it by groupe ?
  Reply With Quote
01-11-07, 04:28 PM   #237
Cladhaire
Salad!
 
Cladhaire's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Jul 2005
Posts: 1,935
A.) you have a scale set, known bug.. working to fix it
B.) Yes.. change CLASS to GROUP and comment out the groupOrder line in the header initialization.
__________________
"There's only one thing that I know how to do well and I've often been told that you only can do what you know how to do well, and that's be you-- be what you're like-- be like yourself. And so I'm having a wonderful time, but I'd rather be whistling in the dark..."
  Reply With Quote
01-11-07, 04:37 PM   #238
IcedEarth
A Defias Bandit
Join Date: Jan 2007
Posts: 3
I changed those things

Code:
self.db.profile.headers["PRHeaderColumn"] = setmetatable({}, {__index=self.headerDefaults})
	local column = self:CreateRaidFrame("PRHeaderColumn", nil, "1,2,3,4,5,6,7,8", nil)
	column:Hide()
	column:SetAttribute("groupBy", "GROUP")
	column:SetAttribute("groupingOrder", "GROUP1,GROUP2,GROUP3,GROUP4,GROUP5,GROUP6,GROUP7,GROUP8,GROUP9")
	column:SetAttribute("maxColumns", 1)
	column:SetAttribute("unitsPerColumn", 40)
	column:SetAttribute("columnSpacing", 10)
	column:SetAttribute("columnAnchorPoint", "LEFT")
	self:RestorePosition("PRHeaderColumn")
	column:Show()
But still not working :/
  Reply With Quote
01-11-07, 04:41 PM   #239
Gungolf
A Fallenroot Satyr
Join Date: Mar 2006
Posts: 23
Originally Posted by Cladhaire
B.) Yes.. change CLASS to GROUP and comment out the groupOrder line in the header initialization.
Ah, I did change it to GROUP, but I changed the groupOrder to GROUP too, so it didn't work out. I even re-enabled the block of code above which left me with two sets of raidframes, one with and one without Group-headers.

Thanks!
  Reply With Quote
01-12-07, 12:26 AM   #240
Otto
A Kobold Labourer
Join Date: Jan 2007
Posts: 1
Originally Posted by IcedEarth
I changed those things

Code:
self.db.profile.headers["PRHeaderColumn"] = setmetatable({}, {__index=self.headerDefaults})
	local column = self:CreateRaidFrame("PRHeaderColumn", nil, "1,2,3,4,5,6,7,8", nil)
	column:Hide()
	column:SetAttribute("groupBy", "GROUP")
	column:SetAttribute("groupingOrder", "GROUP1,GROUP2,GROUP3,GROUP4,GROUP5,GROUP6,GROUP7,GROUP8,GROUP9")
	column:SetAttribute("maxColumns", 1)
	column:SetAttribute("unitsPerColumn", 40)
	column:SetAttribute("columnSpacing", 10)
	column:SetAttribute("columnAnchorPoint", "LEFT")
	self:RestorePosition("PRHeaderColumn")
	column:Show()
But still not working :/
Instead of GROUP1, GROUP2 etc. put just the number such as 1, 2, 3, ... and commenting out the grouping order reverts the sorting to alphabetical - using just the numbers worked for me
  Reply With Quote

WoWInterface » Featured Projects » Cladhaire's Mods » PerfectRaid 2.0 Discussion/Help

Thread Tools
Display Modes

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