FreeMe: Simple Buff Remover
FreeMe is a simple buff removing addon, originally designed only to remove Salvation and Nether Protection, it has been expanded to support all buffs.
Commands:
- /freeme off
- /freeme on
- /freeme spellid
Using /freeme spellid will add the buff to the list of "Remove", type it again to remove it from the list.
FreeMe comes with a preset list to remove salvation and nether protection, if you don't want to remove these buffs here is the list of ID's for you to remove by typing /freeme spellID
Default List:
- 1038 --salvation
- 25895 --greater salvation
- 30300 --nether protection
- 30299 --nether protection
- 30301 --nether protection
- 30302 --nether protection
sad, sounds like it was a great add on
local frame = CreateFrame("Frame", "FreeMe")
frame:SetScript("OnEvent", function(_, _, _, event, _, _, _, _, player, _, spellID)
if event == "SPELL_AURA_APPLIED" and not _G["FREEME_OFF"] and player == pName then
if _G["FREEME_TBL"][spellID] then
local n = GetSpellInfo(spellID)
frame:CancelBuff(n)
Print(format(REM, n)) <------ REMOVE THIS LINE