WoW API: SetLookingForGroup

Revision as of 04:47, 15 August 2023 by Move page script (talk | contribs) (Move page script moved page API SetLookingForGroup to API SetLookingForGroup without leaving a redirect)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

WoW API < SetLookingForGroup

Flags the player as looking for group for a specific destination.

SetLookingForGroup(slot, missiontype, destination)

ArgumentsEdit

slot
Number - Slot index (1 to 3); there are three LFG slots, so you can look for groups for three different destinations.
missiontype
Number - Type index, corresponding to an entry in the GetLFGTypes() return list; the current types are "None", "Dungeon", "Raid", "Quest (Group)", "Zone", "Heroic Dungeon"
destination
Number - Destination index within the mission type -- this would be the specific zone or instance index acquired from GetLFGTypeEntries(missiontype).

ExampleEdit

local slot, mtype, destination = 1,3,2;
SetLookingForGroup(slot, mtype, destination);
print("Now looking for ", (select(destination, GetLFGTypeEntries(mtype))), " group");

See AlsoEdit

ClearLookingForGroup