ACE3/addons/medical/XEH_init.sqf

10 lines
179 B
Plaintext
Raw Normal View History

2015-02-06 12:47:17 +00:00
#include "script_component.hpp"
2015-08-22 14:26:53 +00:00
params ["_unit"];
2015-02-06 12:47:17 +00:00
_unit addEventHandler ["HandleDamage", {_this call FUNC(handleDamage)}];
2015-04-19 15:28:47 +00:00
if (local _unit) then {
[_unit] call FUNC(init);
};