ACE3/addons/interaction/functions/fnc_canInteractWithCivilian.sqf

22 lines
585 B
Plaintext

/*
* Author: commy2
* Checks if the unit can interact with civilian on foot
*
* Arguments:
* 0: Unit <OBJECT>
* 1: Target <OBJECT>
* 2: Target has to be on the civilian side (default: true) <BOOL>
*
* Return Value:
* Able to interact with civilian <BOOL>
*
* Example:
* [target] call ace_interaction_fnc_canInteractWithCivilian
*
* Public: No
*/
#include "script_component.hpp"
params ["_unit", "_target", ["_isCivilian", true]];
alive _target && isNull objectParent _target && [side _target != side _unit, side group _target == civilian] select _isCivilian // return