WoW API: UnitCanAssist
← WoW API < UnitCanAssist
Indicates whether the first unit can assist the second unit.
canAssist = UnitCanAssist(unitToAssist, unitToBeAssisted);
ParametersEdit
ArgumentsEdit
ReturnsEdit
- canAssist
- Bool - 1 if the unitToAssist can assist the unitToBeAssisted, nil otherwise.
ExampleEdit
if (UnitCanAssist("player", "target")) then DEFAULT_CHAT_FRAME:AddMessage("You can assist the target.") else DEFAULT_CHAT_FRAME:AddMessage("You cannot assist the target.") end
ResultEdit
A message indicating whether the player can assist the current target is displayed in the default chat frame.