ACE3/addons/medical/functions/fnc_treatmentTourniquet.sqf

49 lines
1.6 KiB
Plaintext
Raw Normal View History

2015-02-21 20:26:39 +00:00
/*
* Author: Glowbal
* Apply a tourniquet to the patient
*
* Arguments:
* 0: The medic <OBJECT>
* 1: The patient <OBJECT>
* 2: SelectionName <STRING>
* 3: Treatment classname <STRING>
*
*
* Return Value:
2015-08-22 17:47:23 +00:00
* Succesful treatment started <BOOL>
2015-02-21 20:26:39 +00:00
*
* Public: No
*/
#include "script_component.hpp"
params ["_caller", "_target", "_selectionName", "_className", "_items"];
2015-02-21 20:26:39 +00:00
2015-11-30 16:14:05 +00:00
if (count _items == 0) exitWith {false};
2015-02-21 20:26:39 +00:00
private _part = [_selectionName] call FUNC(selectionNameToNumber);
2015-11-30 16:14:05 +00:00
if (_part == 0 || _part == 1) exitWith {
// [QEGVAR(common,displayTextStructured), ["You cannot apply a CAT on this body part!"], [_caller]] call CBA_fnc_targetEvent;
2015-02-21 20:26:39 +00:00
false;
};
private _tourniquets = _target getVariable [QGVAR(tourniquets), [0,0,0,0,0,0]];
2015-11-30 16:14:05 +00:00
if ((_tourniquets select _part) > 0) exitWith {
_output = "There is already a tourniquet on this body part!"; // TODO localization
[QEGVAR(common,displayTextStructured), [_output, 1.5, _caller], [_caller]] call CBA_fnc_targetEvent;
2015-02-21 20:26:39 +00:00
false;
};
private _removeItem = _items select 0;
2016-02-18 01:54:43 +00:00
if (local _target) then {
2016-06-03 18:57:21 +00:00
[QGVAR(treatmentTourniquetLocal), [_target, _removeItem, _selectionName]] call CBA_fnc_localEvent;
2016-02-18 01:54:43 +00:00
} else {
2016-06-03 18:57:21 +00:00
[QGVAR(treatmentTourniquetLocal), [_target, _removeItem, _selectionName], _target] call CBA_fnc_targetEvent;
2016-02-18 01:54:43 +00:00
};
[_target, _removeItem] call FUNC(addToTriageCard);
[_target, "activity", LSTRING(Activity_appliedTourniquet), [[_caller, false, true] call EFUNC(common,getName)]] call FUNC(addToLog);
[_target, "activity_view", LSTRING(Activity_appliedTourniquet), [[_caller, false, true] call EFUNC(common,getName)]] call FUNC(addToLog); // TODO expand message
2015-08-22 17:47:23 +00:00
true