ACE3/addons/medical/functions/fnc_hasTourniquetAppliedTo.sqf

20 lines
433 B
Plaintext

/*
* Author: Glowbal
* Check if unit has a tourniquet applied to the specified bodypart
*
* Arguments:
* 0: The Unit <OBJECT>
* 1: SelectionName <STRING>
*
* ReturnValue:
* Has tourniquet applied <BOOL>
*
* Public: Yes
*/
#include "script_component.hpp"
params ["_target", "_selectionName"];
(((_target getVariable [QGVAR(tourniquets), [0,0,0,0,0,0]]) select ([_selectionName] call FUNC(selectionNameToNumber))) > 0);