WoW API: StartDuelUnit

From AddOn Studio
Revision as of 13:55, 26 June 2007 by WoWWiki>Ravas (Noted that this function has been removed.)
Jump to navigation Jump to search

WoW API < StartDuelUnit

Invites a player to start a duel.

StartDuelUnit("unit");

Parameters

Arguments

("unit")
unit
String - The name of the player to invite to duel.

Returns

nil

Example

This function can be called with the varibale "unit" as the player that should be invited to duel.
function startDuel(unit)
  StartDuelUnit(unit);
end