WoW API: UnitIsGroupLeader

From AddOn Studio
Revision as of 18:34, 25 September 2012 by Bear (talk | contribs) (Created page with "{{wowapi}} __NOTOC__ Returns true if the unit is leader party or raid group, false otherwise. isTrue = UnitIsGroupLeader("arg1"[, groupType]) == Parameters == === Argument...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

WoW API < UnitIsGroupLeader

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

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

Arguments

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)

Returns

isTrue
(boolean) true or false

Examples

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

Notes

  • 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.

See