View Single Post
11-26-14, 10:06 AM   #87
10leej
A Molten Giant
 
10leej's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2011
Posts: 583
Originally Posted by groin View Post
what are you using for debuff,buff, proc? it's seems rfilter or sfilter...

i prefer sfilter because of it tracks also procs, but i don't be able to add 'Neav border' to it...
You'd have to modify sFilter itself most likely. But just glancing at the code for it looks simple enough to do.

Try in sFilter.lua just add something like

Code:
frame:CreateBeautyBorder(12)
at about line 20 or so after this script
Code:
local function sFilter_CreateFrame(data)
    local spellName, _, spellIcon = GetSpellInfo(data.spellId)
    local frame = CreateFrame("Frame", "sFilter_" .. data.unitId .. "_" .. data.spellId, UIParent)
If it works you can add the other skinning options in.
__________________
Tweets YouTube Website
  Reply With Quote