WoW API: UnitPlayerOrPetInRaid

From AddOn Studio
Jump to navigation Jump to search

WoW API < UnitPlayerOrPetInRaid

Returns 1 if the unit is in your raid group, nil otherwise.

isTrue = UnitPlayerOrPetInRaid("unit")

Parameters[edit]

Arguments[edit]

"unit"
String - unitId who should be checked

Returns[edit]

isTrue
1 or nil

Note: returns nil for player and pet as of 3.0.2

Example[edit]

local TargetInRaid = UnitPlayerOrPetInRaid("target")

Result[edit]

TargetInRaid = 1   - If your target is in your raid group.
TargetInRaid = nil - If your target is not in raid group.