WoW API: UnitIsGroupLeader

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

WoW API < UnitIsGroupLeader

Returns true if the unit is leader party or raid group, false otherwise.

isTrue = UnitIsGroupLeader("unit"[, groupType])

ArgumentsEdit

unit
(unitId) Unit that should be checked
groupType (optional)
(partyCategoryType) The type of group.
  • LE_PARTY_CATEGORY_HOME - get the count for a local or manual group. (default)
  • LE_PARTY_CATEGORY_INSTANCE - get the count for a player's automatic group. (default in an instance)

ReturnsEdit

isTrue
(boolean) true or false

ExamplesEdit

Call

local targetIsLeader = UnitIsGroupLeader("target")

Result

targetIsLeader == true  - If your target is the leader of their group
targetIsLeader == false - If your target is not the leader of their group

NotesEdit

  • Seems to work on players outside of their group.
  • As of 5.0.4, passing an unknown unitName, will cause UnitIsGroupLeader to return the name, which may be a bug.

SeeEdit