WoW:API UnitIsTapped: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
m ({{wowapi}})
Line 1: Line 1:
<center>'''UnitIsTapped''' - ''Documentation by John''</center>
{{wowapi}}
 
Checks to see if a unit is tapped.
Checks to see if a unit is tapped
  local isTapped = UnitIsTapped(unit);
  local isTapped = UnitIsTapped(unit);


Line 26: Line 25:
   -- Target is tapped by another player
   -- Target is tapped by another player
  end
  end
----
__NOTOC__
{{Template:WoW API}}

Revision as of 07:59, 2 August 2006

WoW API < UnitIsTapped

Checks to see if a unit is tapped.

local isTapped = UnitIsTapped(unit);

Arguments
unit (UnitID)
the unit name (e.g., "target")

Returns
isTapped
true if the unit is tapped, false otherwise.

Example
if (UnitIsTapped("target")) then
 -- Target is tapped
end
Example used in conjunction with UnitIsTappedByPlayer
if (UnitIsTapped("target")) and (not UnitIsTappedByPlayer("target")) then
 -- Target is tapped by another player
end