WoW:API UnitInRaid: Difference between revisions
Jump to navigation
Jump to search
(See also) |
No edit summary |
||
| Line 1: | Line 1: | ||
{{wowapi}} __NOTOC__ | {{wowapi}} __NOTOC__ | ||
Returns a number if the unit is in your raid group, nil otherwise. | Returns a number if the unit is in your raid group, nil otherwise. | ||
raidIndex = UnitInRaid("unit") | |||
== Arguments == | == Arguments == | ||
;unit : String - [[unitId]] to check. | ;unit | ||
: String - [[unitId]] to check. | |||
== Returns == | == Returns == | ||
; | ;raidIndex | ||
: [[RaidIndex]] of "unit" if she is in your raid group, otherwise nil. | |||
== Example == | == Example == | ||
print("Your target is " .. (UnitInRaid("target") and "" or "not ") .. "in your raid group.") | |||
==Details== | ==Details== | ||
* The return value is the same index used to retrieve information about raid members using [[API GetRaidRosterInfo]]. | |||
* Pets are not considered to be part of your raid group. | |||
* While in a battleground, this function returns information about your battleground group. | |||
==See also== | ==See also== | ||
* [[API UnitInParty]] | * [[API UnitInParty]] | ||
* [[API GetRaidRosterInfo]] | |||
Revision as of 10:30, 5 December 2013
← WoW API < UnitInRaid
Returns a number if the unit is in your raid group, nil otherwise.
raidIndex = UnitInRaid("unit")
Arguments
- unit
- String - unitId to check.
Returns
- raidIndex
- RaidIndex of "unit" if she is in your raid group, otherwise nil.
Example
print("Your target is " .. (UnitInRaid("target") and "" or "not ") .. "in your raid group.")
Details
- The return value is the same index used to retrieve information about raid members using API GetRaidRosterInfo.
- Pets are not considered to be part of your raid group.
- While in a battleground, this function returns information about your battleground group.