ACE3/addons/medical_treatment/functions/fnc_hasTourniquetAppliedTo.sqf

26 lines
570 B
Plaintext

/*
* Author: Glowbal
* Check if unit has a tourniquet applied to the specified bodypart
*
* Arguments:
* 0: The Unit <OBJECT>
* 1: Body Part <STRING>
*
* Return Value:
* Has tourniquet applied <BOOL>
*
* Example:
* [player, "leftleg"] call ace_medical_treatment_fnc_hasTourniquetAppliedTo
*
* Public: No
*/
#include "script_component.hpp"
params ["_target", "_bodyPart"];
private _index = ALL_BODY_PARTS find toLower _bodyPart;
if (_index < 0) exitWith { false };
((_target getVariable [QEGVAR(medical,tourniquets), [0,0,0,0,0,0]]) select _index) > 0