DropItemOnUnit

From Warcraft Wiki
Jump to navigation Jump to search

Drops an item from the cursor onto a unit, i.e. to initiate a trade.

DropItemOnUnit(unit)

Parameters

Arguments

unit
string : UnitId - Unit to which you want to give the item on the cursor.

Example

if ( CursorHasItem() ) then
  DropItemOnUnit("pet");
end;

Result

Item is dropped from cursor and given to the player's pet.