View Single Post
08-31-09, 08:18 AM   #272
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2007
Posts: 1,710
Originally Posted by Limbero View Post
1. I'd like to be able to filter debuffs on my target and set a maximum amount of them. Would be good to know how to do this for all frames actually.
You can use .onlyShowPlayer on buffs/debuffs/auras

Originally Posted by Limbero View Post
2. Is it possible to show a maximum of 5 raid groups?
It depends, I don't know how Caellian spawns his raid frames.
If he spawns a single header, use this:
lua Code:
  1. <raidheader>:SetAttribute('groupFilter', '1,2,3,4,5')

If he spawns multiple headers, you should find something like this:
lua Code:
  1. for i = 1, 8 do
  2.    ...
  3. end
Change 8 to 5.

Originally Posted by Limbero View Post
3. I'm never interested in target buffs except for emalon's adds, how do I filter this if possible?
Create a filter for the target debuffs.
Take a look at how my layout does it.