2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-05-09 02:47:15 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
2015-09-28 13:37:18 +00:00
|
|
|
* Checks if the unit can join a group
|
2015-05-09 02:47:15 +00:00
|
|
|
*
|
|
|
|
* Arguments:
|
2015-09-28 13:37:18 +00:00
|
|
|
* 0: Unit <OBJECT>
|
2015-05-09 02:47:15 +00:00
|
|
|
* 1: Target <OBJECT>
|
|
|
|
*
|
2015-09-28 13:37:18 +00:00
|
|
|
* Return Value:
|
2015-05-09 02:47:15 +00:00
|
|
|
* Able to join a group <BOOL>
|
|
|
|
*
|
|
|
|
* Example:
|
2015-05-14 18:00:56 +00:00
|
|
|
* [player, target] call ace_interaction_fnc_canJoinGroup
|
2015-05-09 02:47:15 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-04-26 18:57:55 +00:00
|
|
|
|
2015-09-28 13:37:18 +00:00
|
|
|
params ["_unit", "_target"];
|
2015-04-26 18:57:55 +00:00
|
|
|
|
|
|
|
alive _target
|
|
|
|
&& {!(_target getVariable ["ACE_isUnconscious", false])}
|
|
|
|
&& {side group _unit == side group _target}
|
2015-09-28 13:37:18 +00:00
|
|
|
&& {group _unit != group _target} // return
|