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:29,941
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 10-23-11, 08:24 AM  
jordaldo
A Kobold Labourer

Forum posts: 0
File comments: 11
Uploads: 0
Ah. Thanks
Report comment to moderator  
Reply With Quote
Unread 10-26-11, 03:06 PM  
reflectional
A Fallenroot Satyr
 
reflectional's Avatar

Forum posts: 20
File comments: 6
Uploads: 0
Amazing addon been looking for something to track my debuffs/buffs and couldent find anything that fit me i am new to Lua (dont know anything but trying to learn) thought i would give this a shot despite the warning ;p and i was able to get everything working and figure out the error messeges and fix it when it did work. Thank You!!!
Report comment to moderator  
Reply With Quote
Unread 11-08-11, 05:22 AM  
Xully
A Cyclonian

Forum posts: 44
File comments: 180
Uploads: 0
ive been trying to track RAging blow "Fury warrior" proc. to add it into rfilter3, but its hard to do it because if you add raging blow spellid nothing will happen, cause it opens up whenever you are enrage or have bezerker rage active on you, and if i add thoose spellid it will show the picture of enrage or bezerker rage, I want picture of raging blow to show upon if i'm enrage or better whenever raging blow is clickable, it shows, is that possible? thanks
Last edited by Xully : 11-08-11 at 05:22 AM.
Report comment to moderator  
Reply With Quote
Unread 11-08-11, 09:46 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
No.
__________________
| 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 11-24-11, 07:44 AM  
Bhumi
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Thanks a lot, Zork for your great work on this addon and all the Roth UI pack. Danke schön !


EDIT : got it, nvm
Last edited by Bhumi : 11-25-11 at 07:10 PM.
Report comment to moderator  
Reply With Quote
Unread 12-01-11, 11:30 AM  
elegos
A Kobold Labourer

Forum posts: 0
File comments: 17
Uploads: 0
Bane of Doom not working?

Hello zork!

Thank you for this addon! I've got a problem with the config file. It runs smoothly, but it seems it doesn't like Bane of Doom. I've double-checked in-game and the debuff applied is 603, but it won't find it for some strange reason. I've set in the spelllist Bane of Agony, and the addon finds it. This is my debuff configuration, may you please have a look into it?

Code:
  			[2] = {
  				spec = nil,
  				spellid = 603, -- Bane of Doom
  				spelllist = {
  					[0] = 603, -- Bane of Doom
  					[1] = 980  -- Bane of Agony
  				},
  				size = 48,
  				pos = {
  					a1	= "BOTTOM",
  					a2	= "BOTTOM",
  					af	= "UIParent",
  					x	= 0,
  					y	= 210
  				},
  				unit			= "target",
  				validate_unit	= true,
  				ismine			= true,
  				desaturate		= true,
  				move_ingame		= false,
  				alpha = {
  					found = {
  						frame	= 1,
  						icon	= 1
  					},
  					not_found = {
  						frame	= 0.4,
  						icon	= 0.6
  					}
  				}
  			}
EDIT: same issue with Curse of the Elements, spell ID 1490... Curse of Weakness works (Curse of Tongues IDK as the target dummy is immune)

P.S.
May you please explain me the buff/debuff option "match_spellid"? I haven't understood it from the docs, since I haven't found any spell name property...
Last edited by elegos : 12-01-11 at 11:38 AM.
Report comment to moderator  
Reply With Quote
Unread 12-01-11, 12:30 PM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Re: Bane of Doom not working?

Index has to start with 1. So make it
Code:
[1] = 603, -- Bane of Doom
__________________
| 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 12-01-11, 12:37 PM  
elegos
A Kobold Labourer

Forum posts: 0
File comments: 17
Uploads: 0
Ahhhh stupid typo! Used to work in C++

Thanks!
Report comment to moderator  
Reply With Quote
Unread 01-13-12, 09:02 AM  
Monolit
A Black Drake
AddOn Author - Click to view AddOns

Forum posts: 81
File comments: 428
Uploads: 7
hello zork, I tried rfilter the other night to track some cooldowns mainly and it works quite well, however I'd like to have generic configs for classes, but the way you currently handle your 'spec' detection (identifying active spec) you can't really do that.

Lets say I want to track lava burst on all my shaman characters with main elemental spec... right now I can not do that, so I would like to suggest you change all
GetActiveTalentGroup() calls to
GetPrimaryTalentTree(false, false, GetActiveTalentGroup())

in all 3 'check...' functions

This way in config file you'll be able to simply set spec = N, where N would be the desired talent tree number for given class.

Aaaaand we will be able to start building some massive generic config file for all classes/specs
Report comment to moderator  
Reply With Quote
Unread 01-13-12, 03:18 PM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Well you can make a config for a full class by removing the name in the condition and just leaving the class.
__________________
| 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 01-14-12, 03:30 AM  
Monolit
A Black Drake
AddOn Author - Click to view AddOns

Forum posts: 81
File comments: 428
Uploads: 7
Originally Posted by zork
Well you can make a config for a full class by removing the name in the condition and just leaving the class.
Yeah, obviously you can simply make a list of spells for class, but tracking, let's say, Lava Burst cooldown is critical for elemental spec, but absolutely useless for restoration, that's why determining a spec is a very useful feature to have in the config file imho.
Report comment to moderator  
Reply With Quote
Unread 01-14-12, 07:11 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Hmm. I think I got you. Gonna add it.

*edit*
Update is available. You can now change the spec setting to: nil, 1, 2 or 3
__________________
| 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 : 01-14-12 at 07:43 AM.
Report comment to moderator  
Reply With Quote
Unread 01-22-12, 08:51 AM  
Monolit
A Black Drake
AddOn Author - Click to view AddOns

Forum posts: 81
File comments: 428
Uploads: 7
Originally Posted by zork
Hmm. I think I got you. Gonna add it.

*edit*
Update is available. You can now change the spec setting to: nil, 1, 2 or 3
good news

I was working on that add-on a little, trying to modify it to fit my needs and noticed 1 interesting thing... even if nothing goes on it still checks 5 times a second (0.2 timer) for every added icon which produce pretty high CPU usage if you have allot of stuff added there.

OnUpdate is only needed to get our timer working.
So would it make sense to actually go with handling icon updates on per-event basis? i.e. we don't need to always check for cooldowns, we can just start our OnUpdate script for timer once SPELL_UPDATE_COOLDOWN event was fired, same thing with Buffs and Debuffs: we just watch for UNIT_AURA and then start our timer.
Report comment to moderator  
Reply With Quote
Unread 01-22-12, 10:39 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
It's actually not that bad at all. The onUpdated checks every icon available. The UNIT_AURA and other EVENTS would be fired per icon. Which may result in more function calls.
Plus if you don't like the update every 0.2 seconds just change the timer.
__________________
| 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 : 01-22-12 at 10:40 AM.
Report comment to moderator  
Reply With Quote
Unread 01-25-12, 03:53 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
__________________
| 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
Post A Reply



Category Jump: