WoW API: UnitIsTappedByPlayer

From AddOn Studio
Revision as of 04:47, 15 August 2023 by Move page script (talk | contribs) (Move page script moved page API UnitIsTappedByPlayer to API UnitIsTappedByPlayer without leaving a redirect)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

WoW API < UnitIsTappedByPlayer

Checks to see if a unit is tapped by the player

local isTapped = UnitIsTappedByPlayer(unit);

Parameters

Arguments

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

Returns

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

Example

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

Example used in conjunction with UnitIsTapped

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