mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
25 lines
476 B
Plaintext
25 lines
476 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Checks if the player can join a group
|
|
*
|
|
* Arguments:
|
|
* 0: Player <OBJECT>
|
|
* 1: Target <OBJECT>
|
|
*
|
|
* Return value:
|
|
* Able to join a group <BOOL>
|
|
*
|
|
* Example:
|
|
* [player, target] call ace_interaction_fnc_canJoinGroup
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
PARAMS_2(_unit,_target);
|
|
|
|
alive _target
|
|
&& {!(_target getVariable ["ACE_isUnconscious", false])}
|
|
&& {side group _unit == side group _target}
|
|
&& {group _unit != group _target}
|