ACE3/addons/medical_treatment/functions/fnc_hasTourniquetAppliedTo.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

24 lines
512 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: Glowbal
* Checks if the unit has a tourniquet applied on the specified body part.
*
* Arguments:
* 0: Unit <OBJECT>
* 1: Body Part <STRING>
*
* Return Value:
* Has Tourniquet Been Applied <BOOL>
*
* Example:
* [player, "leftleg"] call ace_medical_treatment_fnc_hasTourniquetAppliedTo
*
* Public: No
*/
params ["_unit", "_bodyPart"];
private _index = ALL_BODY_PARTS find toLower _bodyPart;
_index >= 0 && {HAS_TOURNIQUET_APPLIED_ON(_unit,_index)}