Grid2

Grid2

9M Downloads

Is it possible to filter all "Raid Debuffs" in other debuff types?

DamienShahan opened this issue ยท 5 comments

commented

I currently have both Raid Debuffs and Typeless debuffs visible in my indicator, so that I also see important typless debuffs in other content (like m+).

Is it possible to blacklist/filter all Raid Debuffs in the other Debuff types, without having to add each single one to the filter list?

Here is an example of how I tried to filter the entire raid debuff list from my Poison Type, since Typeless has a bunch of other blacklisted stuff as well. But this does not work.
image

Since I have both typeless and raid debuffs active, all enabled raid debuffs are shown twice on my frames:
image

Cheers

commented

You can create a Debuffs Group, this status has more filter options,:
To create a debuffs group, goto debuffs, on the right panel select "Debuffs" for "Select Type" option, type a descriptive name for the new debuffs group, click create button:
But keep in mind that "Boss Debuffs" in the status filter is not the same that "Raid Debuffs", what is a boss debuff is decided by the game, instead a raid debuff is any debuff added in the raid debuff module configuration.

grid2-debuffs-group-example1

commented

Thank you for that tip. Using a self made filter worked:

image

commented

How does Use strict filtering works? The way I understand it is that everything that is checked must be True. But you can't have both (Short Duration AND Long Duration) or (Non Boss Debuffs AND Boss Debuffs) at the same time, they are mutually exclusive.

commented

Yes its a bit confusing maybe i should think how to display the filters in a more intuitive way.
By default all debuffs are displayed (all checked) and you hide things unchecking options,
When both options in a row are checked,the filter for this row does not exist at all, so nothing to filter, nothing to hide.

The "use strict filtering" is applied between rows. so if you want for example:
Long duration debuffs that can be Dispelled, you uncheck "short duration" and "non dispellable".

If the "use strict filtering" is uncheked in the above example::
The addon will display the debuff even if only one condition is met: "is long duration" or "is dispelable."

commented

Ah ok, so the rows have an OR condition while the columns will have and AND condition if 'use strict filtering'

Goes something like this (if 'use string filtering' is checked)

(Dispellable OR Non Dispellabel)
AND 
(Typed OR Untyped)
AND 
...
(Non self casted OR Self Casted)

If 'use strict filtering' is unchecked, then the AND become OR

Thanks for the clarification.