Wowpedia

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

READ MORE

Wowpedia
No edit summary
Line 39: Line 39:
 
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 [[API UnitIsVisible|UnitIsVisible("unit")]], versus further away.
 
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 [[API UnitIsVisible|UnitIsVisible("unit")]], versus further away.
   
  +
----
{{Template:WoW API}}
+
{{WoW API}}
[[Category:API Types|UnitId]]
 

Revision as of 05:47, 4 January 2006

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

"player"
The current player
"pet"
The current player's pet
"party1"
The first other party member
"party2"
The second other party member
"party3"
The third other party member
"party4"
The fourth other party member
"partypetN"
The pet of the N'th party member (N is 1,2,3, or 4) (New in 1.5.0)
"raidN"
The N'th raid member (N is 1,2,3,...,40)
"raidpetN"
The N'th raid member's pet (N is 1,2,3,...,40) (New in 1.5.0)
"target"
The currently targetted unit
"mouseover"
The unit which the mouse is currently (or was most recently) hovering over

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 ("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.


Template:WoW API