View Single Post
Old 13th September 2008, 01:30 AM   #16 (permalink)
Windcape
Commander
 
Windcape's Avatar
 
Join Date: Apr 2008
Posts: 835
Windcape is on a distinguished road
Default

I was asked to explain how I managed to remove Misery,Mind Flay and Shadowweaving on the last screenshot, so here goes:

Go to Interface\AddOns\Quartz\Buff and open Buff.lua

First, find this section:
Code:
if db.targetdebuffs then
Continue down to
Code:
if duration and duration > 0 then
and replace it with following:

Code:
if (name == 'Misery') then
elseif (name == 'Mind Flay') then						
elseif (name == 'Shadow Vulnerability') then
elseif duration and duration > 0 then
If you want a more simple version, download following Buff.lua and replace the old Buff.lua :-)

Enjoy.
__________________
Windcape is offline