ACE3/addons/medical/functions/fnc_actionRemoveTourniquet.sqf

39 lines
1.0 KiB
Plaintext
Raw Normal View History

2015-02-23 19:35:36 +00:00
/*
* Author: Glowbal
* Action for removing the tourniquet on specified selection
*
* Arguments:
* 0: The medic <OBJECT>
* 1: The patient <OBJECT>
* 2: SelectionName <STRING>
*
* Return Value:
* NONE
*
* Public: Yes
*/
#include "script_component.hpp"
2015-04-30 06:17:26 +00:00
private ["_caller", "_target", "_part", "_selectionName", "_tourniquets", "_output"];
2015-02-23 19:35:36 +00:00
_caller = _this select 0;
_target = _this select 1;
_selectionName = _this select 2;
// grab the required data
_part = [_selectionName] call FUNC(selectionNameToNumber);
_tourniquets = _target getvariable [QGVAR(tourniquets), [0,0,0,0,0,0]];
// Check if there is a tourniquet on this bodypart
if ((_tourniquets select _part) == 0) exitwith {
_output = "There is no tourniquet on this body part!";
["displayTextStructured", [_caller], [_output, 1.5, _caller]] call EFUNC(common,targetEvent);
2015-02-23 19:35:36 +00:00
};
// Removing the tourniquet
_tourniquets set[_part, 0];
_target setvariable [QGVAR(tourniquets), _tourniquets, true];
// Adding the tourniquet item to the caller
2015-03-21 21:22:28 +00:00
_caller addItem "ACE_tourniquet";