Thread Tools Display Modes
Prev Previous Post   Next Post Next
11-04-16, 03:45 PM   #1
Agata
A Murloc Raider
Join Date: Jun 2010
Posts: 7
Filtering debuffs

Hello,

I am using ouf Phanx and I modified it quite a bit, so the party frames show all debuffs.
Following lines were added to Frames.lua in the party part:

Code:
        		self.Debuffs = CreateFrame("Frame", nil, self)
        		self.Debuffs:SetPoint("LEFT", self, "LEFT", 70, 0)
        		self.Debuffs:SetWidth((FRAME_HEIGHT * 4) + (GAP * 3))
        		self.Debuffs:SetHeight(FRAME_HEIGHT)
        		self.Debuffs.parent = self

                        self.Debuffs["growth-x"] = "RIGHT"
        		self.Debuffs["growth-y"] = "UP"
        		self.Debuffs["showType"] = true
        		self.Debuffs["initialAnchor"] = "RIGHT"
        		self.Debuffs["size"] = FRAME_HEIGHT
        		self.Debuffs["num"] = 4
        		self.Debuffs["spacing-x"] = GAP
        		self.Debuffs["spacing-y"] = GAP

        		-- self.Debuffs.CustomFilter   = ns.CustomAuraFilters.party
        		self.Debuffs.PostCreateIcon = ns.Auras_PostCreateIcon
        		self.Debuffs.PostUpdateIcon = ns.Auras_PostUpdateIcon
        		self.Debuffs.PostUpdate     = ns.Auras_PostUpdate -- required to detect Dead => Ghost
Now I want to filter certain debuffs like http://www.wowhead.com/spell=206151/challengers-burden.


I only find snippets in ouf Phanx where you can add auras to show throw a filter - but I disabled the filter, because I want to see all debuffs by default.

Somebody got some snippets to hide some spell ids from the debuff frame?

  Reply With Quote
 

WoWInterface » Featured Projects » oUF (Otravi Unit Frames) » Filtering debuffs


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