mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
27 lines
624 B
Plaintext
27 lines
624 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Apply a tourniquet to the patient, local callback.
|
|
*
|
|
* Arguments:
|
|
* 0: The patient <OBJECT>
|
|
* 1: Item used classname <STRING>
|
|
* 2: Body part <STRING>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_target", "_tourniquetItem", "_bodyPart"];
|
|
|
|
private _partIndex = ALL_BODY_PARTS find toLower _bodyPart;
|
|
|
|
// Place a tourniquet on the bodypart
|
|
private _tourniquets = _target getVariable [QEGVAR(medical,tourniquets), [0,0,0,0,0,0]];
|
|
|
|
_tourniquets set [_partIndex, CBA_missionTime];
|
|
|
|
_target setVariable [QEGVAR(medical,tourniquets), _tourniquets, true];
|