October 7, 2024, Monday, 280

UnitId

From NeoWiki

Revision as of 09:04, 30 June 2007 by Neo (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Many of the API functions which act on units in the game world (Players, NPC's, Monsters, etc) refer to the unit in question by an identifier that is related to how the player is accessing the unit. The following values are available:

Base Values

"focus" 
The current player's focus target as selected by the /focus command. (Added in 2.0.0)
"player" 
The current player
"pet" 
The current player's pet
"partyN" 
The Nth party member excluding the player (1,2,3 or 4)
"partypetN" 
The pet of the Nth party member (N is 1,2,3, or 4) (Added in 1.5.0)
"raidN" 
The raid member with raidIndex N (1,2,3,...,40).
"raidpetN" 
The pet of the raid member with raidIndex N (1,2,3,...,40) (Added in 1.5.0)
"target" 
The currently targetted unit. May be overriden in macros by unit specified as a value of respective Secure Button attribute.
"playertarget" 
The currently targetted unit. Always.
"mouseover" 
The unit which the mouse is currently (or was most recently) hovering over
"none"
A valid unit token that always refers to no unit.

The following value also appears in some very specific places (Vendor interactions, for example)

"npc" or "NPC" 
The NPC with which the player is currently interacting.

Targets

You can append the suffix target to any UnitId to get a UnitId which refers to that unit's target (e.g. "partypet2target"). This appending can be repeated indefinitely (e.g. "playertargettarget"), though you will observe an attendant performance hit if you overdo it, as the game engine has to jump from target to target.

Notes

Many of the functions which take a UnitId only provide useful results for a subset of ID's. Other functions will only provide information for friendly targets (or those upon which a power is active).

Also, some functions return different values if the target is close enough to be 'visible' to your client (not necessarily in line of sight), as can be determined with UnitIsVisible("unit"), versus further away.