1. June 1, 2017  

    Outland combat log bug

    Anyone know how to fix the combat log constantly stopping recording?

  2. June 1, 2017  
    The combat log bug is one that began in early Burning Crusade and wasn't fixed by Blizzard until Cataclysm. To fix your combat log and addons that use it, the combat log must be reset.

    To reset your combat log use the followimg macro.


    /script CombatLogClearEntries
    /script CombatLogClearEntries()
    /run local f = CreateFrame("frame",nil, UIParent); f:SetScript("OnUpdate", CombatLogClearEntrie

  3. June 1, 2017  

  4. The combat log bug is one that began in early Burning Crusade and wasn't fixed by Blizzard until Cataclysm. To fix your combat log and addons that use it, the combat log must be reset.

    To reset your combat log use the followimg macro.


    /script CombatLogClearEntries
    /script CombatLogClearEntries()
    /run local f = CreateFrame("frame",nil, UIParent); f:SetScript("OnUpdate", CombatLogClearEntrie
    That code hurts...

    The first line does absolutely nothing at all.
    The second line reset the CL as intendend but it's not needed because since the reset is done on every frame with line 3, which is missing the full funtion name "...s" and a closing bracket ")"

    Either use a prober CombatLogFix or just use
    Code:
    /run local f = CreateFrame("frame",nil, UIParent); f:SetScript("OnUpdate", CombatLogClearEntries)
    Edited: July 12, 2017

Posting Permissions

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