Would there be a way to add a /cancelaura line in the config.wtf file so whenever I log any character the line removes, lets say, Jack-o'-Lanterned! buff? Lets just say I don't like that pumpkin.
Printable View
Would there be a way to add a /cancelaura line in the config.wtf file so whenever I log any character the line removes, lets say, Jack-o'-Lanterned! buff? Lets just say I don't like that pumpkin.
Didn't work for me. As in /freeme does output a few commands I can use, but when I /freeme 44212 and /freeme on - nothing happens. Not immediately, not when I relog, zero. The only version of the addon I could find was for 3.2.0 tho.
Download chaosbanebuddy and change the code in the lua file to
Code:
function CBB_Onload(self)
self:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED");
CancelUnitBuff("player", "Jack-o'-Lanterned!")
end
function CBB_OnEvent(self, event, ...)
if event == "COMBAT_LOG_EVENT_UNFILTERED" then
local timestamp, type, sourceGUID, sourceName, sourceFlags, destGUID, destName, destFlags = select(1, ...)
if type == "SPELL_AURA_APPLIED" and destName == UnitName("player") then
local spellId, spellName, spellSchool = select(9, ...)
if spellId == 44185 or spellId == 44212 then
CancelUnitBuff("player", "Jack-o'-Lanterned!")
end
end
end
end
Doesn't work for me.
I just shoved a /cancelaura line in a general macro i have for clicking yes/no prompts. Ty for suggestions tho.
...
Delete
...