ACE3/addons/medical/functions/fnc_treatmentBasic_bandage.sqf

28 lines
671 B
Plaintext
Raw Normal View History

2015-02-28 19:46:36 +00:00
/*
* Author: KoffeinFlummi
* Callback when the bandaging treatment is complete
*
* Arguments:
* 0: The medic <OBJECT>
* 1: The patient <OBJECT>
* 2: Selection Name <STRING>
* 3: Treatment classname <STRING>
*
* Return Value:
2015-08-22 17:47:23 +00:00
* None
2015-02-28 19:46:36 +00:00
*
* Public: No
*/
#include "script_component.hpp"
#define BANDAGEHEAL 0.8
2015-08-22 17:47:23 +00:00
private ["_hitSelections", "_hitPoints", "_point", "_damage"];
params ["_caller", "_target", "_selection", "_className"];
2015-02-28 19:46:36 +00:00
2016-02-18 01:54:43 +00:00
if (local _target) then {
2016-06-03 18:57:21 +00:00
[QGVAR(treatmentBasic_bandageLocal), [_target, _selection]] call CBA_fnc_localEvent;
2016-02-18 01:54:43 +00:00
} else {
2016-06-03 18:57:21 +00:00
[QGVAR(treatmentBasic_bandageLocal), [_target, _selection], _target] call CBA_fnc_targetEvent;
2016-02-18 01:54:43 +00:00
};