WoW:API UnitIsGroupAssistant: Difference between revisions
Jump to navigation
Jump to search
(Created page with "{{wowapi}} __NOTOC__ Returns true if the unit is assistant leader in a party or raid group, false otherwise. isTrue = UnitIsGroupAssistant("arg1"[, groupType]) === Argumen...") |
m (Move page script moved page API UnitIsGroupAssistant to API UnitIsGroupAssistant without leaving a redirect) |
(No difference)
|
Latest revision as of 04:47, 15 August 2023
← WoW API < UnitIsGroupAssistant
Returns true if the unit is assistant leader in a party or raid group, false otherwise.
isTrue = UnitIsGroupAssistant("unit"[, groupType])
Arguments[edit]
- 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[edit]
- isTrue
- (boolean) true or false
Examples[edit]
Call
local targetIsAssistant = UnitIsGroupAssistant("target")
Result
targetIsAssistant == true - If your target is an assistant in their group targetIsAssistant == false - If your target is not an assistant in their group
Notes[edit]
- Seems to work on players outside of their group.
- As of 5.0.4, passing an unknown unitName, will cause UnitIsGroupAssistant to return the name, which may be a bug.