WoW:API UnitSex: Difference between revisions
Jump to navigation
Jump to search
(→Notes: Updated. Valid for at least patch 3.3.3) |
|||
Line 33: | Line 33: | ||
== Notes == | == Notes == | ||
* If "unit" doesn't exist (e.g. UnitSex("target") when you have no target), UnitSex() will return 2. (As seen on [[Talk:World of Warcraft API#API_UnitSex.28.22target.22.29_:_What_if_there_is_no_selected_target_.3F|Talk:World of Warcraft API]]) | * If "unit" doesn't exist (e.g. UnitSex("target") when you have no target), UnitSex() will return 0.<br/> Previously, it would return 2. (As seen on [[Talk:World of Warcraft API#API_UnitSex.28.22target.22.29_:_What_if_there_is_no_selected_target_.3F|Talk:World of Warcraft API]]) |
Revision as of 12:36, 5 April 2010
Returns the gender of the specified unit.
gender_code = UnitSex("unit")
Parameters
Arguments
- ("unit")
- unit
- String -- The UnitId to query (e.g. "player", "party2", "pet", "target" etc.)
Returns
- gender_code
- gender_code
- Number:
- 1 = Neutrum / Unknown
- 2 = Male
- 3 = Female
Example
local genderTable = { "neuter or unknown", "male", "female" }; DEFAULT_CHAT_FRAME:AddMessage('Target is ' .. genderTable[UnitSex("target")] .. '.');
Result
Target is female.
Details
- UnitSex("target") will return 1 (neuter/unknown) on "sheeped" mobs, no matter their "true" gender. (Needs reverification after 1.11). UnitSex("player") does not return 1 on "penguinification".
- Prior to v1.11, the codes were 0=male, 1=female, 2=unknown.
Notes
- If "unit" doesn't exist (e.g. UnitSex("target") when you have no target), UnitSex() will return 0.
Previously, it would return 2. (As seen on Talk:World of Warcraft API)