- 0 Talk
-
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.