Files
DayZ-Epoch/SQF/dayz_code/compile/zombie_initialize.sqf
2013-10-22 10:16:20 -05:00

8 lines
244 B
Plaintext

private ["_unit","_position"];
_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}];
};