WoW:API UnitIsTappedByPlayer: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
m (Move page script moved page API UnitIsTappedByPlayer to API UnitIsTappedByPlayer without leaving a redirect)
 
(No difference)

Latest revision as of 04:47, 15 August 2023

WoW API < UnitIsTappedByPlayer

Checks to see if a unit is tapped by the player

local isTapped = UnitIsTappedByPlayer(unit);

Parameters[edit]

Arguments[edit]

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

Returns[edit]

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

Example[edit]

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

Example used in conjunction with UnitIsTapped[edit]

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