Thread: Raid problem
View Single Post
11-20-10, 03:59 PM   #11
Tobbe8716
An Aku'mai Servant
 
Tobbe8716's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2009
Posts: 36
I only use the raidframes btw, removed all partyframes and use the raid for party aswell.

The code if it helps

Code:
if cfg.RaidandParty then	
CompactRaidFrameManager:UnregisterAllEvents()
CompactRaidFrameManager:Hide()
CompactRaidFrameContainer:UnregisterAllEvents()
CompactRaidFrameContainer:Hide()	
	
	self:SetActiveStyle"Arp - Raid"
	local raid = self:SpawnHeader('oUF_Raid', nil, 'solo,party,raid,raid10,raid25,raid40',	
	'showParty', true,
	'showRaid', true, 
	'showPlayer', true,
	'groupFilter', '1,2,3,4,5,6,7,8',
	'groupingOrder', '1,2,3,4,5,6,7,8',
	'groupBy', 'GROUP',
	'maxColumns', cfg.columns,
	'unitsPerColumn', 5,
	'column', 4,
	'columnAnchorPoint', "BOTTOM",
	'columnSpacing', -4,
	'yoffset', 0,
	'xoffset', -4,
	'point', 'RIGHT',
	'oUF-initialConfigFunction', ([[
			self:SetWidth(%d)
			self:SetHeight(%d)
    ]]):format(cfg.widthR, cfg.heightR + cfg.NumbFS + cfg.PPyOffset))
	--raid:SetPoint("BOTTOM", UIParent, "BOTTOM", 0, 150)	
	raid:SetPoint("BOTTOMRIGHT", UIParent, "BOTTOMRIGHT", cfg.raidxpos, cfg.raidypos)	
end
__________________
Arp UI oUF_Arp

Last edited by Tobbe8716 : 11-20-10 at 04:23 PM.
  Reply With Quote