/* * Author: Glowbal * * * Arguments: * 0: Caller * 1: Target * 2: SelectionName * 3: ClassName * 4: Item * * Return Value: * Boolean * * 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;