ACE3/addons/interaction/functions/fnc_canJoinGroup.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

25 lines
489 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: commy2
* Checks if the unit can join a group
*
* Arguments:
* 0: Unit <OBJECT>
* 1: Target <OBJECT>
*
* Return Value:
* Able to join a group <BOOL>
*
* Example:
* [player, target] call ace_interaction_fnc_canJoinGroup
*
* Public: No
*/
params ["_unit", "_target"];
alive _target
&& {!(_target getVariable ["ACE_isUnconscious", false])}
&& {side group _unit == side group _target}
&& {group _unit != group _target} // return