mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
28 lines
703 B
Plaintext
28 lines
703 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Apply a tourniquet to the patient, local callback.
|
|
*
|
|
* Arguments:
|
|
* 0: The patient <OBJECT>
|
|
* 1: Item used classname <STRING>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_tourniquets", "_part", "_applyingTo"];
|
|
params ["_target", "_tourniquetItem", "_selectionName"];
|
|
|
|
//If we're not already tracking vitals, start:
|
|
[_target] call FUNC(addVitalLoop);
|
|
|
|
_part = [_selectionName] call FUNC(selectionNameToNumber);
|
|
|
|
// Place a tourniquet on the bodypart
|
|
_tourniquets = _target getVariable [QGVAR(tourniquets), [0,0,0,0,0,0]];
|
|
_tourniquets set [_part, CBA_missionTime];
|
|
_target setVariable [QGVAR(tourniquets), _tourniquets, true];
|