Thread Tools Display Modes
01-02-11, 08:17 AM   #1
Vociferate
A Deviate Faerie Dragon
Premium Member
Join Date: Feb 2007
Posts: 11
Show 'specific players at all times'. Is it possible?

I am wondering if it is possible to set up a party frame that will *always* show specific players? By there in game name, or something of that nature.

I am a multiboxer, and if I run any BG's most of the time my character's do not make it into the same group. And healing them becomes a massive headache.

Is it possible to set up a party frame when in a raid that will show my character's at all times?

Sort of like keeping the party frame up during a raid. But instead of:

Code:
"sortMethod", "NAME",
I could use:

Code:
"sortMethod", "VOCIFERATE",
Is this possible?
  Reply With Quote
01-02-11, 09:26 AM   #2
haste
Featured Artist
 
haste's Avatar
Premium Member
Featured
Join Date: Dec 2005
Posts: 1,027
You can use sortMethod NAMELIST and set nameList to a comma separated list of player names.
__________________
「貴方は1人じゃないよ」
  Reply With Quote
01-02-11, 07:39 PM   #3
Vociferate
A Deviate Faerie Dragon
Premium Member
Join Date: Feb 2007
Posts: 11
Originally Posted by haste View Post
You can use sortMethod NAMELIST and set nameList to a comma separated list of player names.
So how would I edit them by nameList? Would be as follows:

Code:
"sortMethod", "nameList", "ToonA", "ToonB", "ToonC",
  Reply With Quote
01-02-11, 08:17 PM   #4
yj589794
A Rage Talon Dragon Guard
AddOn Author - Click to view addons
Join Date: Mar 2009
Posts: 314
This link should be useful:
http://wowprogramming.com/docs/secur.../Group_Headers

The nameList filter should be passed as parameters when you spawn your header frames.

e.g.
Code:
local header = self:SpawnHeader(nil, nil, 'party,raid',
				'showPlayer', true,
				'showParty', true,
				'showRaid', true,
				'nameList', 'ToonA,ToonB,ToonC',
				'initial-width', 100,
				'initial-height', 25,
				'oUF-initialConfigFunction', [[
					local header = self:GetParent()
					self:SetWidth(header:GetAttribute('initial-width'))
					self:SetHeight(header:GetAttribute('initial-height'))
				]]
)
  Reply With Quote

WoWInterface » Featured Projects » oUF (Otravi Unit Frames) » Show 'specific players at all times'. Is it possible?


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