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.
'); document.write(''); var yuipath = 'clientscript/yui'; var yuicombopath = ''; var remoteyui = false; } else // Load Rest of YUI remotely (where possible) { var yuipath = 'https://ajax.googleapis.com/ajax/libs/yui/2.9.0/build'; var yuicombopath = ''; var remoteyui = true; if (!yuicombopath) { document.write(''); } } var SESSIONURL = ""; var SECURITYTOKEN = "guest"; var IMGDIR_MISC = "warmane/misc"; var IMGDIR_BUTTON = "warmane/buttons"; var vb_disable_ajax = parseInt("0", 10); var SIMPLEVERSION = "422"; var BBURL = "https://forum.warmane.com"; var LOGGEDIN = 0 > 0 ? true : false; var THIS_SCRIPT = "showthread"; var RELPATH = "showthread.php?goto=nextnewest&t=461311"; var PATHS = { forum : "", cms : "", blog : "" }; var AJAXBASEURL = "https://forum.warmane.com/"; var CoTTooltips = { rename: true, icons: false, iconsize: 15, qualitycolor: true, overridecolor: { spells: '#839309', items: '', npcs: '#fff', objects: '#fff', quests: '#ffb100', achievements: '#fff' } }; // -->
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.
FreeMe should do the trick.
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.