WoW API: UnitPlayerOrPetInRaid

From AddOn Studio
Revision as of 12:00, 28 August 2006 by WoWWiki>Mikk ("arg1" -> "unitId")
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

Arguments

"unit"
String - unitId who should be checked

Returns

isTrue
1 or nil

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.