ACE3/addons/medical/functions/fnc_treatmentAdvanced_fullHeal.sqf

32 lines
670 B
Plaintext
Raw Normal View History

/*
* Author: Glowbal
*
*
* Arguments:
* 0: Caller <OBJECT>
* 1: Target <OBJECT>
* 2: SelectionName <STRING>
* 3: ClassName <STRING>
* 4: Item <UNKNOWN>
*
* Return Value:
* Boolean <BOOL>
*
* Example:
* [bob, kevin, "selection", "classname", ] call ACE_medical_fnc_treatmentAdvanced_fullHeal
*
* Public: No
*/
#include "script_component.hpp"
2015-09-03 13:49:49 +00:00
params ["_caller", "_target", "_selectionName", "_className", "_items"];
2016-02-18 01:54:43 +00:00
if (local _target) then {
2016-06-03 18:57:21 +00:00
[QGVAR(treatmentAdvanced_fullHealLocal), [_caller, _target]] call CBA_fnc_localEvent;
2016-02-18 01:54:43 +00:00
} else {
2016-06-03 18:57:21 +00:00
[QGVAR(treatmentAdvanced_fullHealLocal), [_caller, _target], _target] call CBA_fnc_targetEvent;
2016-02-18 01:54:43 +00:00
};
true;