epoch tow and lift where is the local_lockUnlock.sqf

FALCO

New Member
where do i find the local_lockUnlock.sqf at dayz epoch 1.0.2.5 or how do i instal tow and lift on dayz epoch 1.0.2.5 anny ideas i have a surviverserver and downloaded server.pbo and cant find that file to set tow and lift
 
\@epoch\dayz_code\compile

its in the actual mod folder. unpack the dayz_code and its in the compile folder. or maybe just copy this


private ["_vehicle","_status"];
_vehicle = _this select 0;
_status = _this select 1;

if (local _vehicle) then {
if(_status) then {
_vehicle setVehicleLock "LOCKED";
} else {
_vehicle setVehicleLock "UNLOCKED";
};
};
 
Back
Top