WoW:API UnitPlayerOrPetInRaid: Difference between revisions
Jump to navigation
Jump to search
m (Move page script moved page API UnitPlayerOrPetInRaid to API UnitPlayerOrPetInRaid without leaving a redirect) |
|
(No difference)
| |
Latest revision as of 04:47, 15 August 2023
← WoW API < UnitPlayerOrPetInRaid
Returns 1 if the unit is in your raid group, nil otherwise.
isTrue = UnitPlayerOrPetInRaid("unit")
Parameters
Arguments
- "unit"
- String - unitId who should be checked
Returns
- isTrue
- 1 or nil
Note: returns nil for player and pet as of 3.0.2
Example
local TargetInRaid = UnitPlayerOrPetInRaid("target")
Result
TargetInRaid = 1 - If your target is in your raid group. TargetInRaid = nil - If your target is not in raid group.