ACE3/addons/interaction/functions/fnc_canTapShoulder.sqf

25 lines
478 B
Plaintext
Raw Normal View History

/*
* Author: commy2
* Checks if the player can tap a shoulder
*
* Arguments:
* 0: Player <OBJECT>
* 1: Target <OBJECT>
*
* Return value:
* Able to tap a shoulder <BOOL>
*
* Example:
* _bool = [player, target] call ace_interaction_fnc_canTapShoulder
*
* Public: No
*/
2015-01-11 23:13:47 +00:00
#include "script_component.hpp"
2015-05-09 20:14:00 +00:00
PARAMS_2(_unit,_target);
2015-01-11 19:32:51 +00:00
_target isKindOf "CAManBase" &&
{alive _target} &&
{_unit distance _target < 4} &&
{!(_target getVariable ["ACE_isUnconscious", false])}