Sync closeDisplay exit codes for easier scripts.txt filtering

This commit is contained in:
ebaydayz
2016-11-11 14:48:28 -05:00
parent 489e0bbc77
commit 88870a6b2a
23 changed files with 41 additions and 56 deletions

View File

@@ -2,7 +2,6 @@
//Created by Dr Bane 20/11/2013
//Copyright Dr Bane And Musty Gaming
if (isServer) then {
_vehicle_233 = objNull;
if (true) then
@@ -294,4 +293,3 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_274 = _this;
_this setPos [12710.407, 9548.6572, 8.768301];
};
};

View File

@@ -2,8 +2,6 @@
//Created by Dr Bane 20/11/2013
//Copyright Dr Bane And Musty Gaming
if (isServer) then {
_vehicle_24 = objNull;
if (true) then
{
@@ -400,4 +398,3 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_this setDir -108.38199;
_this setPos [6965.25, 2759.8867, 9.727478e-005];
};
};

View File

@@ -2,7 +2,6 @@
//Created by Dr Bane 20/11/2013
//Copyright Dr Bane And Musty Gaming
if (isServer) then {
_vehicle_5 = objNull;
if (true) then
@@ -3937,4 +3936,3 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_this setDir 98.278824;
_this setPos [8398.0586, 3012.748, 1.2397766e-005];
};
};

View File

@@ -2,7 +2,6 @@
//Created by Dr Bane 20/11/2013
//Copyright Dr Bane And Musty Gaming
if (isServer) then {
_vehicle_27 = objNull;
if (true) then
@@ -4185,4 +4184,3 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_this setDir -139.52458;
_this setPos [1760.7675, 11721.288, -0.48907313];
};
};

View File

@@ -2,7 +2,6 @@
//Created by Dr Bane 20/11/2013
//Copyright Dr Bane And Musty Gaming
if (isServer) then {
_vehicle_2 = objNull;
if (true) then
@@ -444,4 +443,3 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_this setDir 75.434654;
_this setPos [11715.259, 3417.4905, 6.1988831e-006];
};
};

View File

@@ -2,7 +2,6 @@
//Created by Dr Bane 20/11/2013
//Copyright Dr Bane And Musty Gaming
if (isServer) then {
_vehicle_6 = objNull;
if (true) then
@@ -2234,4 +2233,3 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_this setDir -9.4858913;
_this setPos [3826.2429, 10102.542, -3.0517578e-005];
};
};

View File

@@ -2,7 +2,6 @@
//Created by Dr Bane 20/11/2013
//Copyright Dr Bane And Musty Gaming
if (isServer) then {
_vehicle_5 = objNull;
if (true) then
@@ -3956,4 +3955,3 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_this setDir -71.381462;
_this setPos [11836.992, 12685.103, 7.6293945e-005];
};
};

View File

@@ -2,7 +2,6 @@
//Created by Dr Bane 20/11/2013
//Copyright Dr Bane And Musty Gaming
if (isServer) then {
_vehicle_155 = objNull;
if (true) then
@@ -139,4 +138,3 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_188 = _this;
_this setPos [2540.7234, 5062.2808];
};
};

View File

@@ -1,10 +1,12 @@
[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\DevilsFarm.sqf";
[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\NEA.sqf";
[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\C130Crash.sqf";
[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\ChernoBuildings.sqf";
[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\DeadForest.sqf";
[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\KomyshovoRoadblock.sqf";
[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\MilitaryAirpoort.sqf";
[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\ZelenogorskBuildings.sqf";
[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\Twains.sqf";
if (isServer) then {
[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\DevilsFarm.sqf";
[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\NEA.sqf";
[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\C130Crash.sqf";
[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\ChernoBuildings.sqf";
[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\DeadForest.sqf";
[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\KomyshovoRoadblock.sqf";
[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\MilitaryAirpoort.sqf";
[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\ZelenogorskBuildings.sqf";
[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\Twains.sqf";
};