WoW API: UnitIsTappedByPlayer

WoW API < UnitIsTappedByPlayer

Checks to see if a unit is tapped by the player

local isTapped = UnitIsTappedByPlayer(unit);

ParametersEdit

ArgumentsEdit

unit
String - the (UnitID) (e.g., "target")

ReturnsEdit

isTapped
true if the unit is tapped by current player, false otherwise.

ExampleEdit

if (UnitIsTappedByPlayer("target")) then
 -- Target is tapped by player
end

Example used in conjunction with UnitIsTappedEdit

if (UnitIsTapped("target")) and (not UnitIsTappedByPlayer("target")) then
 -- Target is tapped by another player
end