Originally Posted by Midnight
Thanks for the replies. As I´m using Pitbull for my raidframe so far Grid might be a bit of an overkill just for the sake of the buff reminder. I´ll propably give it a try as complete healer raidframe sometimes in the futer though. For the time beeing I´ll follow Zantigras advice and try XRS. 
|
I'm not sure if this is exactly what you're looking for, but I use PitBull raid frames as well and use a somewhat custom version of the Aura module to show me missing raid buffs. Since you use PitBull, you probably know how to enable Aura and turn on buff filtering (both simple options). Since I'm a Mage, this (by default) only shows me AI/AB/Amp/Dampen on friendly units. If you open the primary Aura lua file (/PitBull/Aura/Aura.lua) in a text editor, you can scroll down to your class and add any buff you want into the "friendBuffs" portion of the dictionary.
So for me, I change
friendBuffs = {
[BS["Amplify Magic"]] = true,
[BS["Arcane Brilliance"]] = true,
[BS["Arcane Intellect"]] = true,
[BS["Dampen Magic"]] = true,
}
into something more like
friendBuffs = {
[BS["Amplify Magic"]] = true,
[BS["Arcane Brilliance"]] = true,
[BS["Arcane Intellect"]] = true,
[BS["Dampen Magic"]] = true,
[BS["Mark of the Wild"]] = true,
[BS["Gift of the Wild"]] = true,
[BS["Power Word: Fortitude"]] = true,
[BS["Prayer of Fortitude"]] = true,
[BS["Power Infusion"]] = true, -- so i can yell at who didn't give it to me
[BS["Innervate"]] = true, -- ditto :)
-- add your own buffs here, like Spirit, Shadow Protection, etc
-- if the buff isn't on, it doesn't show up, so there's no harm adding a bunch
}
Is it perfect? No. Does it get the job done without the additional headache of new mods / more used screen space? Yes, absolutely. The same trick holds true for watching specific debuffs on your enemy targets, though I use pDebuffList now to take care of that for me
