WoW:API TargetByName: Difference between revisions
Jump to navigation
Jump to search
Line 19: | Line 19: | ||
== Details == | == Details == | ||
: '''Removed in 2.0'''. | |||
: If the user isn't nearby or doesn't exist, and '''exactMatch''' isn't set, TargetByName picks the closest match from characters nearby. | : If the user isn't nearby or doesn't exist, and '''exactMatch''' isn't set, TargetByName picks the closest match from characters nearby. |
Revision as of 15:33, 9 December 2006
← WoW API < TargetByName
Target a player by their name.
TargetByName("name", exactMatch);
Parameters
Arguments
- ("name", exactMatch)
- name
- String - The name of the player to target.
- exactMatch
- Boolean
Example
TargetByName("Norrin", true);
Details
- Removed in 2.0.
- If the user isn't nearby or doesn't exist, and exactMatch isn't set, TargetByName picks the closest match from characters nearby.
- If exactMatch is set, TargetByName can also target party members even if they are out of visible range.
- If there is no close match available then an error message is displayed (Error event?) and the target is left unchanged. There is no return value from this method so the only way to check for success is see what the target ended up as afterwards. -- Flickering 20:37, 7 Jan 2005 (EST)