1. #1

    Change "Detailed Loot Information" when entering LFR

    Hi,

    I normally have this option checked, but in LFR it gets a little spamy.

    So I want an addon that changes this to unchecked when entering an LFR Raid und check it when I leave the LFR raid

  2. #2
    Deleted
    Code:
    local function set()
        local lfgmode, emp = GetLFGMode()
        if ((lfgmode == "lfgparty") or (((lfgmode == "queued") or (lfgmode == "rolecheck")) and (emp == "empowered"))) and ((select(2,GetInstanceInfo())) == "raid") then
            SetCVar("showLootSpam",0)
        else
            SetCVar("showLootSpam",1)
        end
    end
    local f = CreateFrame("Frame")
    f:SetScript("OnEvent",set)
    f:RegisterEvent("LFG_UPDATE")
    set()
    How to use. Untested.

  3. #3
    thanks.


    /10char

  4. #4
    Deleted
    Also made the code above into an addon if you can't be bothered to create it yourself.

Posting Permissions

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