1. #1
    Deleted

    Addon or macro for Cho'gal sickness debuff

    Hello , i would like to know if there is any addon that can show in the in the UI everyone's Corruption bar from Cho'gal encounter, if not i would like to know if it is possible to make a macro that can announce in raid chat /yell when someone from the raid gets the sickness debuff ( the one which you receive at 50 corruption stacks). Thanks in advance, have a nice day.

  2. #2
    Deleted
    Would require everyone to have the addon installed for #1.
    Sickness, can do:
    Code:
    local a = CreateFrame("Frame")
    a:SetScript("OnEvent", function(self, event, ...)
        local arg = {...}
        if arg[2] == "SPELL_AURA_APPLIED" and arg[9] == 82235 then
            SendChatMessage("Sickness on: "..arg[7], "RAID")
        end
    end)
    a:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED")
    How to use. Untested. Report back with issues.

  3. #3
    Deleted
    No message popped.

  4. #4
    Deleted
    Code:
    local a = CreateFrame("Frame")
    a:SetScript("OnEvent", function(self, event, ...)
        local arg = {...}
        if arg[2] == "SPELL_AURA_APPLIED" and arg[10] == "Corruption: Sickness" then
            SendChatMessage("Sickness on: "..arg[7], "RAID")
        end
    end)
    a:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED")
    Try this instead. Unsure which ID is the actual debuff.

Posting Permissions

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