Files
DayZ-Epoch/dayz_code/compile/zombie_initialize.sqf
Aaron Clark 76e9a0582e 0.1
2012-11-04 20:28:50 -06:00

8 lines
231 B
Plaintext

private["_unit"];
_unit = _this select 0;
if (isServer) then {
_unit addEventHandler ["local", {_this call zombie_findOwner}];
} else {
_position = getPosATL _unit;
_unit addEventHandler ["local", {_this call eh_zombieInit}];
};