ACE3/addons/interaction/functions/fnc_canTapShoulder.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
488 B
Plaintext

#include "..\script_component.hpp"
/*
* 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:
* [player, target] call ace_interaction_fnc_canTapShoulder
*
* Public: No
*/
params ["_unit", "_target"];
_target isKindOf "CAManBase" &&
{alive _target} &&
{_unit distance _target < 4} &&
{!(_target getVariable ["ACE_isUnconscious", false])} // return