View Single Post
05-03-11, 01:51 AM   #8
Lily.Petal
A Molten Giant
 
Lily.Petal's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2010
Posts: 540
Originally Posted by red8981 View Post
I used sbf, raven, stuf, and now working on oUF's.
I can not seem to get oUF right click remove to work thou, but I am bad at lua.

sbf benefit nicely with the configs esp filters. (can not seem to find a option for weapon enchant)
Raven, I can do anything this can with sbf.
stuf, it is tricky, i set up debuff first, then I turn on buff. debuff frame moved into wierd places >.<

Anyways, i am sticking to sbf until I figure out oUF's
If you have debuffs and buffs on with Stuf, you have to turn off the vertical something option in the debuff options, when buffs get turned on it 'moves' the debuffs, so you have to set it to none.

I don't really know but you can try
Code:
local buff_OnClick = function(self, button)
   if (button == "RightButton" and self.unit == "player") then
    local name, rank = UnitBuff("player", self:GetID())
    CancelPlayerBuff(name, rank)
   end
end
Wonder if that works, still learning. I'm still using stuf on my Mac, learning oUF slowly on my laptop.

Also, Red, Seerah moved our comments into a oUF topic ;D talk in there for that.
__________________

Aggro Color to KG Panels Borders - Nibelheim
Lua Based UI Hider - Nibelheim
Custom LUA PowerText - Stuf - Nibelheim, Seerah

Last edited by Lily.Petal : 05-03-11 at 01:56 AM.
  Reply With Quote