WoW:API UnitIsPlusMob: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Move page script moved page API UnitIsPlusMob to API UnitIsPlusMob without leaving a redirect) |
(No difference)
| |
Latest revision as of 04:47, 15 August 2023
← WoW API < UnitIsPlusMob
UnitIsPlusMob("unit") will return 1 if it is an elite mob or nothing if it is a normal mob
Check whether a mob is elite
isElite = UnitIsPlusMob("unit")
Parameters
Arguments
- target
- String - indicates who to check for elite status.
Returns
- isElite
- Flag - Indicates if the mob is elite, 1 if it is, nil if it is not.
Usage
local isElite = UnitIsPlusMob("target")
if isElite then
-- run away code
else
-- cast a nasty spell on the mob
end