ACE3/addons/interaction/functions/fnc_canJoinTeam.sqf

25 lines
475 B
Plaintext
Raw Normal View History

/*
* Author: commy2
* Checks if the player can join a team
*
* Arguments:
* 0: Player <OBJECT>
* 1: Target <OBJECT>
*
2016-06-18 09:50:41 +00:00
* Return Value:
* Able to join a team <BOOL>
*
* Example:
2015-05-14 18:00:56 +00:00
* [player, target] call ace_interaction_fnc_canJoinTeam
*
* Public: No
*/
#include "script_component.hpp"
2015-05-09 20:14:00 +00:00
PARAMS_2(_unit,_target);
alive _target
&& {!(_target getVariable ["ACE_isUnconscious", false])}
&& {!([_target] call EFUNC(common,isPlayer))}
&& {_target in units group _unit}