Add toggleable vehicle key changer by salival

This commit is contained in:
A Man
2021-08-18 21:30:48 +02:00
parent cc1babf570
commit e6eb94197d
11 changed files with 833 additions and 16 deletions

View File

@@ -208,6 +208,10 @@ if (!isDedicated) then {
locateVehicle = compile preprocessFileLineNumbers "\z\addons\dayz_code\actions\locateVehicle.sqf";
};
if (DZE_VehicleKey_Changer) then {
vkc_vehicleInfo = compile preprocessFileLineNumbers "\z\addons\dayz_code\actions\vkc\vehicleInfo.sqf";
};
if (DZE_Service_Points) then {
execVM "\z\addons\dayz_code\actions\servicePoints\init.sqf";
};
@@ -217,7 +221,7 @@ if (!isDedicated) then {
player_mutantAttack = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\player_mutantAttack.sqf";
mutant_generate = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\mutant_generate.sqf";
mutant_findTarget = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\mutant_findTarget.sqf";
};
};
// Weather
if (DZE_Weather in [3,4]) then {

View File

@@ -211,7 +211,9 @@ if (!isDedicated) then {
s_player_gdoor_opener = [];
s_player_gdoor_opener_ctrl = -1;
s_player_bury_human = -1;
s_player_butcher_human = -1;
s_player_butcher_human = -1;
s_player_copyToKey = -1;
s_player_claimVehicle = -1;
};
call dayz_resetSelfActions;