1. Trouble with Recount TBC

    So i've downloaded many different damage meters for Outlands and can't get them to work. Obviously everyone suggests Recount but i've downloaded it off of every TBC addon site i could find and it still doesn't work. Does anyone know how to fix this problem, or have a link to a damage meter for TBC that actually works? Thanks!

  2. I think the issues is being cause by the Combat log bugging out use this and put it in a macro and see if the damage meter works after.

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


    Credit to the reply in this thread
    http://forum.warmane.com/showthread.php?t=355441
    Edited: July 12, 2017 Reason: Credit

  3. I think the issues is being cause by the Combat log bugging out use this and put it in a macro and see if the damage meter works after.

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


    Credit to the reply in this thread
    http://forum.warmane.com/showthread.php?t=355441
    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
  •