2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2019-06-03 15:31:46 +00:00
|
|
|
/*
|
|
|
|
* Author: Glowbal
|
|
|
|
* Local callback for applying a tourniquet to a patient.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Patient <OBJECT>
|
|
|
|
* 1: Body Part <STRING>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [player, "LeftLeg"] call ace_medical_treatment_fnc_tourniquetLocal
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
|
|
|
params ["_patient", "_bodyPart"];
|
|
|
|
TRACE_2("tourniquetLocal",_patient,_bodyPart);
|
|
|
|
|
|
|
|
private _partIndex = ALL_BODY_PARTS find toLower _bodyPart;
|
|
|
|
|
|
|
|
private _tourniquets = GET_TOURNIQUETS(_patient);
|
|
|
|
_tourniquets set [_partIndex, CBA_missionTime];
|
|
|
|
_patient setVariable [VAR_TOURNIQUET, _tourniquets, true];
|
|
|
|
|
|
|
|
[_patient] call EFUNC(medical_status,updateWoundBloodLoss);
|
2019-12-12 16:25:21 +00:00
|
|
|
|
|
|
|
private _nearPlayers = (_patient nearEntities ["CAManBase", 6]) select {_x call EFUNC(common,isPlayer)};
|
|
|
|
TRACE_1("clearConditionCaches: tourniquetLocal",_nearPlayers);
|
|
|
|
[QEGVAR(interact_menu,clearConditionCaches), [], _nearPlayers] call CBA_fnc_targetEvent;
|