Files
DayZ-Epoch/SQF/dayz_code/compile/zombie_initialize.sqf
2014-02-23 01:29:56 +01:00

9 lines
253 B
Plaintext

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