mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
23 lines
547 B
Plaintext
23 lines
547 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Checks if the unit can interact with civilian
|
|
*
|
|
* 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 && [side _target != side _unit, side group _target == civilian] select _isCivilian // return
|