WoW API: GetLFGTypes

From AddOn Studio
Jump to navigation Jump to search

WoW API < GetLFGTypes

Returns all available LFG categories

category1, category2, category3, ... = GetLFGTypes()

Takes[edit]

Nothing

Returns[edit]

String categoryN
Name of Nth category

Events[edit]

Needs UPDATE_LFG_TYPES

Details[edit]

When using this function to feed other LFG functions with its results, remember that these functions only want the index of the value, not the value itself. If you wanted to use 'Zone' as category, you would have to supply the number 4. Look at the example!

Example[edit]

local types = {GetLFGTypes()}
for i,category in pairs(types) do
  DEFAULT_CHAT_FRAME:AddMessage(format('Category %u: %s', i, category))
end

Output:

Category 1: Dungeon
Category 2: Raid
Category 3: Quest
Category 4: Zone
Category 5: Battleground