Download
(5Kb)
Download
Updated: 09-02-18 03:36 AM
Pictures
File Info
Compatibility:
Battle for Azeroth (8.0.1)
Updated:09-02-18 03:36 AM
Created:04-09-09 11:46 AM
Downloads:30,242
Favorites:140
MD5:

rFilter  Popular! (More than 5000 hits)

Version: 800.20180901
by: zork [More]


Intro

Buff, debuff and cooldown filter button framework. Does nothing on its own. Needs a layout like rFilter_Zork.
Slash Command
/rfilter
API documentation
rFilter API documentation
Requires
rLib
Git
https://github.com/zorker/rothui/tre...wow8.0/rFilter

Optional Files (0)


Post A Reply Comment Options
Unread 04-28-11, 02:18 PM  
burtonag
A Kobold Labourer

Forum posts: 0
File comments: 19
Uploads: 0
When I log on it brings up my spec 1 configuration even though I am in spec 2. I reload UI and spec 2 comes up.
Report comment to moderator  
Reply With Quote
Unread 04-28-11, 02:25 PM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Spec config is long time gone. You define spec for each icon and icons get checked every set timespan. If the spec is active by that time the icon will show up. See changelog.
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Report comment to moderator  
Reply With Quote
Unread 04-28-11, 03:58 PM  
burtonag
A Kobold Labourer

Forum posts: 0
File comments: 19
Uploads: 0
Originally posted by zork
Spec config is long time gone. You define spec for each icon and icons get checked every set timespan. If the spec is active by that time the icon will show up. See changelog.
Doh, I guess I need to update and redo my config.
Report comment to moderator  
Reply With Quote
Unread 05-05-11, 04:15 PM  
mikenavi
A Kobold Labourer

Forum posts: 0
File comments: 40
Uploads: 0
Hi, thanks for great addon, but i have one problem. I try to track first phase debuffs on heroic Twilight Ascendant Council encounter. I use this code:

Code:
        spec = nil, 
        spellid = 92075, -- first Gravity Core debuff
        spelllist = { },
        ...
        unit          = "player",
        validate_unit = true,
        ...
But in this container i have two different spells shown during the fight: 92076 and 92075. This spells have same names "Gravity Core", but different IDs. Same problem with another debuff - 92068 and 92067. I need to track only one of them. How can i sovle this problem?
Last edited by mikenavi : 05-06-11 at 01:02 AM.
Report comment to moderator  
Reply With Quote
Unread 05-05-11, 05:05 PM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
If you need to track more that one buff at a time add them to the spelllist.
Code:
        spellid = 92075, -- use this as icon if none is found
        spelllist = { --check both
          [1] = 92075,
          [2] = 92076,
        },
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Last edited by zork : 05-05-11 at 05:07 PM.
Report comment to moderator  
Reply With Quote
Unread 05-05-11, 06:42 PM  
mikenavi
A Kobold Labourer

Forum posts: 0
File comments: 40
Uploads: 0
Originally posted by zork
If you need to track more that one buff at a time add them to the spelllist.
Code:
        spellid = 92075, -- use this as icon if none is found
        spelllist = { --check both
          [1] = 92075,
          [2] = 92076,
        },
Thanx a lot for your advice but i suppose i didn't desribe my problem clearly. I need to track only one of those debuffs, and don't track another at all. I create rule with only one spellID, but, in fact, both of them are tracking at the same time (one of them have an expiration timer, and another one don't have one, but both of them have exactly same spellName).

I can upload my config somewhere. And sorry for my bad English
Last edited by mikenavi : 05-06-11 at 01:08 AM.
Report comment to moderator  
Reply With Quote
Unread 05-06-11, 01:47 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
That is a problem because UnitAura does not support the spellid, it just can deliver the spellid.

http://wowprogramming.com/docs/api/UnitAura

Sometimes it is nice to track for the Aura name only because (maybe you just want to know if "Mark of the Wild" was applied to a target no matter what).

A fix for this can be applied but only if I add a new variable to the config and code. That would be sth like "match_spellid = true". So not only the name has to match but the spellid aswell.

I then would add the new config attribute to the condition.
Code:
     if name and (not f.ismine or (f.ismine and caster == "player")) and (not f.match_spellid or (f.match_spellid and spID = spellid)) then
If match_spellid is set than not only the name has to be found but the spellID has to match aswell. Gonna add this tonight.

I'm actually planning of releasing rFiler4 with a config panel. Will be my first mod with an options panel ingame. (You heard it here first. Psssst)
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Last edited by zork : 05-06-11 at 01:53 AM.
Report comment to moderator  
Reply With Quote
Unread 05-06-11, 07:53 AM  
mikenavi
A Kobold Labourer

Forum posts: 0
File comments: 40
Uploads: 0
Originally posted by zork
That is a problem because UnitAura does not support the spellid, it just can deliver the spellid.

http://wowprogramming.com/docs/api/UnitAura

Sometimes it is nice to track for the Aura name only because (maybe you just want to know if "Mark of the Wild" was applied to a target no matter what).

A fix for this can be applied but only if I add a new variable to the config and code. That would be sth like "match_spellid = true". So not only the name has to match but the spellid aswell.

I then would add the new config attribute to the condition.
Code:
     if name and (not f.ismine or (f.ismine and caster == "player")) and (not f.match_spellid or (f.match_spellid and spID = spellid)) then
If match_spellid is set than not only the name has to be found but the spellID has to match aswell. Gonna add this tonight.

I'm actually planning of releasing rFiler4 with a config panel. Will be my first mod with an options panel ingame. (You heard it here first. Psssst)
Sounds great! Thanx a lot.
Report comment to moderator  
Reply With Quote
Unread 05-06-11, 09:48 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Added it to googlecode for now.

http://code.google.com/p/rothui/source/detail?r=717

You can check the diffs. Download the latest core.lua and add the "match_spellid" variable to your config.
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Report comment to moderator  
Reply With Quote
Unread 05-06-11, 12:01 PM  
mikenavi
A Kobold Labourer

Forum posts: 0
File comments: 40
Uploads: 0
Unfortunately i can't do any tests until raid (monday evening). But i'll try to search same situation with another debuffs with same names at the same time.

Thanks alot for you work, again
Report comment to moderator  
Reply With Quote
Unread 05-07-11, 05:01 AM  
mikenavi
A Kobold Labourer

Forum posts: 0
File comments: 40
Uploads: 0
I found another boss with same debuff name.
Twilight Ascendant Council — "Static Overload" spID 92068
Ionar in Halls of Lightning — "Static Overload" spID 59795

With "spellid = 92068" and "match_spellid = true" the debuff is not shown.
With "spellid = 92068" and "match_spellid = false" the debuff is shown.
With "spellid = 59795" and "match_spellid = true" the debuff is shown.

Everything works great now!
Report comment to moderator  
Reply With Quote
Unread 05-20-11, 02:33 PM  
Ro8son
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
Dark Intent

Hey, i felt in love with this addon, been using power auras for a long time, but switched to this when i found it although i had to spent some time setting this up, so thanks for making it

But i've got a problem. As a warlock i like to see when i get certain procs, like the 4p bonus or eradication. I was able to set most of them up by myself, besides one - Dark Intent.
The spell has two buff icons appearing in the top right corner, the +3% haste one (spellid: 85768) and the damage proc one (spellid: 94310).
I would like to see the damage proc when it activates, going up to 3 stacks, to see it's uptime and when it drops, but even though i put the right spellid in it still shows the 85768 buff icon as a 30 min buff.
Am i doign something wrong since it's a buff you recive from the player you put Dark Intent on and not by myself ? I've been trying to change the unit/ismine values with no avail.
No idea if you have a warlock and are able to check this, but i'd be greatful if you had such an opportunity.
Thanks in advance.
Report comment to moderator  
Reply With Quote
Unread 05-20-11, 06:34 PM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Re: Dark Intent

You need to use match spell id for this. By default the name is checked. Only with match_spellid the spellid is checked aswell.
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Last edited by zork : 05-20-11 at 06:34 PM.
Report comment to moderator  
Reply With Quote
Unread 05-29-11, 09:47 AM  
Ro8son
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
This is what i've been using:
[4] = {
spellid = 94310, -- Dark Intent
size = 28,
pos = { a1 = "BOTTOM", a2 = "BOTTOM", af = "UIParent", x = -232, y = 363 },
unit = "player",
ismine = false,
desaturate = true,
match_spellid = true,
alpha = {
found = {
frame = 1,
icon = 1,
},
not_found = {
frame = 0.0,
icon = 0.6,

As you see the problem still remains. No idea why. It's only with this particular spell, maybe cause both buffs have the same name, but as you said match spellid should fix that.
Report comment to moderator  
Reply With Quote
Unread 05-29-11, 11:33 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Well yeah if you are using the version from Googlecode only. Otherwise the feature is not implemented! It is currently in testing mode.

You would need to install the core.lua: http://rothui.googlecode.com/svn/tru...lter3/core.lua
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Last edited by zork : 05-29-11 at 11:35 AM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: