WoW API: UnitIsEnemy

WoW API < UnitIsEnemy

This function will determine if the target is hostile towards you.

ParametersEdit

FunctionEdit

UnitIsEnemy
UnitIsEnemy("unit","otherunit")
Determine whether a unit is hostile to you or not.

ArgumentsEdit

unit
String - The UnitId of the first unit.
otherunit
String - The UnitId of the unit to compare with the first unit.

ReturnsEdit

IsEnemy
true or false, boolean.
If the second parameter is "target" and nothing is targeted, this function returns nil.

ExampleEdit

IsEnemy
/script if (UnitIsEnemy("player","target")) then DEFAULT_CHAT_FRAME:AddMessage( "target health ="..UnitHealth("target") ); end
This will determine if your target is hostile, and if it is, it will print the target's health to the chat frame.
Not IsEnemy
/script if not (UnitIsEnemy("player","target")) then SendChatMessage("Don't shoot! It's %t!","SAY"); end;
This is to find if the target is not hostile with you (friendly). If you target an friendly target with the name "60Mage" this script will write "Don't shoot! It's 60Mage!" in /s, using your faction's default language.