ACE3/addons/medical/functions/fnc_treatmentAdvanced_fullHeal.sqf
Phyma ffaa195fe5 Conform function headers to coding guidelines (#5255)
* Fixed headers to work with silentspike python script

* Fixed rest of the files

* Fixed ace-team
2017-06-08 15:31:51 +02:00

32 lines
670 B
Plaintext

/*
* 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"
params ["_caller", "_target", "_selectionName", "_className", "_items"];
if (local _target) then {
[QGVAR(treatmentAdvanced_fullHealLocal), [_caller, _target]] call CBA_fnc_localEvent;
} else {
[QGVAR(treatmentAdvanced_fullHealLocal), [_caller, _target], _target] call CBA_fnc_targetEvent;
};
true;