2015-02-28 10:41:27 +00:00
|
|
|
/**
|
|
|
|
* fn_heal.sqf
|
|
|
|
* @Descr: N/A
|
|
|
|
* @Author: Glowbal
|
|
|
|
*
|
|
|
|
* @Arguments: []
|
|
|
|
* @Return:
|
|
|
|
* @PublicAPI: false
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
private ["_unit", "_caller", "_selectionName", "_className", "_items"];
|
|
|
|
_caller = _this select 0;
|
|
|
|
_target = _this select 1;
|
|
|
|
_selectionName = _this select 2;
|
|
|
|
_className = _this select 3;
|
|
|
|
_items = _this select 4;
|
|
|
|
|
|
|
|
// TODO replace by event system
|
2015-02-28 12:17:17 +00:00
|
|
|
[[_caller, _target], QUOTE(DFUNC(treatmentAdvanced_fullHealLocal)), _target] call EFUNC(common,execRemoteFnc); /* TODO Replace by event system */
|
2015-02-28 10:41:27 +00:00
|
|
|
|
|
|
|
true;
|