WoW:API UnitCreatureFamily: Difference between revisions
Jump to navigation
Jump to search
m (Move page script moved page API UnitCreatureFamily to API UnitCreatureFamily without leaving a redirect) |
|||
(One intermediate revision by one other user not shown) | |||
Line 7: | Line 7: | ||
:;unit : [[UnitId]] - unit you wish to query. | :;unit : [[UnitId]] - unit you wish to query. | ||
===Returns=== | ===Returns=== | ||
;creatureFamily : String - localized name of the creature family (e.g., "Crab" or "Wolf"). Possible English values are: | |||
{| style="margin-left: 3em; margin-top: 0;" cellspacing="0" cellpadding="0" | |||
:: | | style="padding-right: 2em"|<poem>Bat | ||
Bear | |||
Bird of Prey | |||
Boar | |||
Carrion Bird | |||
Cat | |||
Chimaera | |||
Core Hound</poem> | |||
| style="padding-right: 2em"|<poem>Crab | |||
Crocolisk | |||
Devilsaur | |||
Doomguard | |||
Dragonhawk | |||
Felguard | |||
Felhunter | |||
Ghoul</poem> | |||
| style="padding-right: 2em"|<poem>Gorilla | |||
Hyena | |||
Imp | |||
Moth | |||
Nether Ray | |||
Raptor | |||
Ravager | |||
Remote Control</poem> | |||
| style="padding-right: 2em"|<poem>Rhino | |||
Scorpid | |||
Serpent | |||
Silithid | |||
Spider | |||
Spirit Beast | |||
Sporebat | |||
Succubus</poem> | |||
| style="padding-right: 2em"|<poem>Tallstrider | |||
Turtle | |||
Voidwalker | |||
Warp Stalker | |||
Wasp | |||
Wind Serpent | |||
Wolf | |||
Worm</poem> | |||
|} | |||
==Example== | ==Example== |
Latest revision as of 04:47, 15 August 2023
← WoW API < UnitCreatureFamily
Returns the creature family of the specified unit (e.g., "Crab" or "Wolf"), or nil if the unit does not have a creature family (e.g. because it is not a creature).
creatureFamily = UnitCreatureFamily(unit);
Parameters[edit]
Arguments[edit]
- unit
- UnitId - unit you wish to query.
Returns[edit]
- creatureFamily
- String - localized name of the creature family (e.g., "Crab" or "Wolf"). Possible English values are:
Bat |
Crab |
Gorilla |
Rhino |
Tallstrider |
Example[edit]
if ( UnitCreatureFamily("target") == "Bear" ) then message("It's a godless killing machine! Run for your lives!"); end
Result[edit]
Displays a message if the target is a type of bear.