Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Advertisement

Returns whether a mob is elite.

isElite = UnitIsPlusMob("unit")

Arguments[]

target
String - unit to check for elite status.

Returns[]

isElite
Flag - Indicates if the mob is elite, 1 if it is, nil if it is not.

Example[]

local isElite = UnitIsPlusMob("target")
 if isElite then
   print("Run away! Run away!")
 else
   CastSpellByName("Pyroblast")
 end
Advertisement