Saved Dungeons & Raids

Saved Dungeons & Raids

28.6k Downloads

WOTLK 3.4.3 Fixes

nfet opened this issue ยท 0 comments

commented

LFG Group UI changed and the list of dungeons are now in a different element source.

Here's an example code of how to extract dungeon info

    local function GetSpecificDungeons()
        local ret = {
        }
        local b = LFDQueueFrameSpecific.ScrollBox

        b:FindByPredicate(function(elem)
            -- header elems have negative numbers, i.e. -174 for "Titan Rune Dungeon Protocol Gama"
            local x = { GetLFGDungeonInfo(elem.dungeonID) }
            table.insert(ret, x)
        end)
        return ret
    end

Function Ouput

image

LFG UI

image