mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 12:12:34 +03:00
8 lines
244 B
Plaintext
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}];
|
|
}; |