Results: 4Comments by: gx240
File: Srendarr - Aura, Buff & Debuff Tracker (Outdated)12/11/14
Re: Re: Re: Re: Re: Re: Show only specific buffs?
Posted By: gx240
local function AddAura(self, aType, tType, name, icon, start, finish, isShield, abilityType, buff, abilityIndex) if name ~= "Critical Surge" then return end existingAura = self.k_auraActive or nil This seems to be the way to go; it's working perfectly. Thank you very much for your help.
File: Srendarr - Aura, Buff & Debuff Tracker (Outdated)12/10/14
Re: Re: Re: Re: Show only specific buffs?
Posted By: gx240
Better solution would be adding condition which will check if you want track that buff or not. Add condition as the first line to the following functions in AuraData.lua: Srendarr:IsWatchedTimed(ability) Srendarr:IsWatchedPassive(ability, abilityType) The condition you need is something like (buff names are case sensitive):...
File: Srendarr - Aura, Buff & Debuff Tracker (Outdated)12/09/14
Re: Re: Show only specific buffs?
Posted By: gx240
AuraData.lua is the file that contains the list of buffs that this addon tracks. If you really want to track specific buffs, you need to comment out the buffs you do not want to be tracked, by putting -- infront of the line with the buff name. Thanks for the help. I commented out all the other buffs except the two I wanted, and it...
File: Srendarr - Aura, Buff & Debuff Tracker (Outdated)12/07/14
Show only specific buffs?
Posted By: gx240
Is it possible to configure this addon to show only specific buffs? I only want it to track one or two specific spells, and ignore everything else.