IsLFGDungeonJoinable

From Warcraft Wiki
Jump to navigation Jump to search
Flavors
Links
Info
Added in 3.3.0

Returns information about the LFG dungeon with the given dungeonID.

isAvailableForAll, isAvailableForPlayer, hideIfNotJoinable, totalGroupSizeRequired = IsLFGDungeonJoinable(dungeonID);

Arguments

dungeonID
number - dungeon ID to query.

Returns

isAvailableForAll
boolean : ???
isAvailableForPlayer
boolean : the player is eligible to join the LFG Dungeon
hideIfNotJoinable
boolean : ???
totalGroupSizeRequired
number : ???

Details

  • Returns LFG dungeon related information.

Example

The following snippet does something.

		local isAvailable, _, _, totalGroupSizeRequired = IsLFGDungeonJoinable(dugeonId)

Patch changes