WoW API: UnitIsCivilian

WoW API < UnitIsCivilian

Determine whether a unit is a civilian (low level enemy faction NPC that counts as a dishonorable kill).

isCivilian = UnitIsCivilian(unit)

ParametersEdit

ArgumentsEdit

unit
String - The UnitId of the unit to check (Tested with hostile "target")

ReturnsEdit

isCivilian
Flag - Returns 1 if the unit is a civilian, nil otherwise.

ExampleEdit

if (UnitIsCivilian("target")==1) then DEFAULT_CHAT_FRAME:AddMessage("Target is a civilian", 1, 1, 0) end;

NotesEdit

  • No longer used by FrameXML as of 2.0, because of the new honor system.