1. Cancelaura in config.wtf file

    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.

  2. 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.

  3. 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.

  4. 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

  5. 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.

  6. ...

    Delete

    ...
    Edited: November 7, 2023

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •