WoW API: UnitPlayerOrPetInRaid
← WoW API < UnitPlayerOrPetInRaid
Returns 1 if the unit is in your raid group, nil otherwise.
isTrue = UnitPlayerOrPetInRaid("unit")
ParametersEdit
ArgumentsEdit
- "unit"
- String - unitId who should be checked
ReturnsEdit
- isTrue
- 1 or nil
Note: returns nil for player and pet as of 3.0.2
ExampleEdit
local TargetInRaid = UnitPlayerOrPetInRaid("target")
ResultEdit
TargetInRaid = 1 - If your target is in your raid group. TargetInRaid = nil - If your target is not in raid group.