WoW:API TargetUnit

From AddOn Studio
Revision as of 16:43, 19 November 2004 by WoWWiki>Danboo
Jump to navigation Jump to search
TargetUnit -Documentation by danboo-

Selects the specified id as the current target.

TargetUnit(id);

Arguments
(String id)
id
the identifier of the target to select

Returns
nil

Example
TargetUnit("player");
Result

Description
Selects the specified id as the current target. The id can be any of "player", "pet", "party1", "party2", "party3" or "party4".
The id "player" refers to the character in use.
The "party*" ids refer to the corresponding party members.
The "pet" id should work too, and will (if it works) target the players pet --Sarf

Template:WoW API