WoW:API UnitPlayerOrPetInRaid: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
("arg1" -> "unitId")
Line 15: Line 15:
<!-- List each return value, together with its type -->
<!-- List each return value, together with its type -->
:;isTrue : 1 or nil
:;isTrue : 1 or nil
Note: returns nil for player and pet as of 3.0.2


== Example ==
== Example ==

Revision as of 22:58, 12 January 2009

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.