From 6de88c7b077233014777af16cad87a225476ae76 Mon Sep 17 00:00:00 2001 From: ebaydayz Date: Thu, 31 Mar 2016 11:35:33 -0400 Subject: [PATCH] Update some WeaponHolder to WeaponHolderBase --- .../CfgVehicles/DZE/LockboxStorage.hpp | 2 +- .../Configs/CfgVehicles/DZE/TentStorage.hpp | 43 +- .../Configs/CfgVehicles/DZE/VaultStorage.hpp | 2 +- .../CfgWeapons/Melee/MeleeSledgehammer.hpp | 68 +-- .../Configs/CfgWeapons/Tools/Sledgehammer.hpp | 3 +- SQF/dayz_code/compile/player_death.sqf | 4 +- SQF/dayz_code/config.cpp | 2 +- SQF/dayz_code/credits.txt | 3 +- SQF/dayz_code/music.fsm | 6 +- SQF/dayz_code/stringtable.xml | 3 + .../system/BIS_Effects/airdestruction.sqf | 9 +- SQF/dayz_code/system/BIS_Effects/init.sqf | 2 +- .../system/BIS_Effects/secondaries.sqf | 6 +- .../system/DynamicWeatherEffects.sqf | 4 +- SQF/dayz_code/system/REsec.sqf | 25 +- SQF/dayz_code/system/antihack.sqf | 133 +---- SQF/dayz_code/system/building_monitor.sqf | 13 +- SQF/dayz_code/system/fire_monitor.sqf | 2 +- SQF/dayz_code/system/handleGear.sqf | 2 +- .../infectiousWaterholes/BlackLake.sqf | 32 +- .../chernarus/infectiousWaterholes/Dobryy.sqf | 16 +- .../infectiousWaterholes/Gvozdno.sqf | 12 +- .../infectiousWaterholes/Kabanino.sqf | 12 +- .../chernarus/infectiousWaterholes/Kopyto.sqf | 22 +- .../infectiousWaterholes/Mogilevka.sqf | 16 +- .../infectiousWaterholes/Nadezdinho.sqf | 16 +- .../infectiousWaterholes/NorthNadezdinho.sqf | 22 +- .../infectiousWaterholes/NorthPusta.sqf | 12 +- .../infectiousWaterholes/NorthTopolka.sqf | 24 +- .../chernarus/infectiousWaterholes/Novy.sqf | 12 +- .../infectiousWaterholes/PobedaDam.sqf | 72 +-- .../infectiousWaterholes/Pogorevka.sqf | 14 +- .../chernarus/infectiousWaterholes/Polana.sqf | 26 +- .../chernarus/infectiousWaterholes/Prud.sqf | 18 +- .../infectiousWaterholes/Sosnovy.sqf | 14 +- .../chernarus/infectiousWaterholes/Stary.sqf | 12 +- .../infectiousWaterholes/Topolka.sqf | 26 +- .../chernarus/infectiousWaterholes/Vysota.sqf | 14 +- .../infectiousWaterholes/WillowLake.sqf | 26 +- .../system/mission/chernarus/poi/Twains.sqf | 538 +++++++++--------- .../system/scheduler/sched_medical.sqf | 2 - SQF/dayz_code/system/trap_monitor.fsm | 162 ------ SQF/dayz_code/util/Array.hpp | 3 + SQF/dayz_code/util/Player.hpp | 12 + SQF/dayz_code/util/array.sqf | 5 + SQF/dayz_code/util/player.sqf | 16 +- SQF/dayz_epoch_b/stringtable.xml | 9 - 47 files changed, 621 insertions(+), 876 deletions(-) delete mode 100644 SQF/dayz_code/system/trap_monitor.fsm diff --git a/SQF/dayz_code/Configs/CfgVehicles/DZE/LockboxStorage.hpp b/SQF/dayz_code/Configs/CfgVehicles/DZE/LockboxStorage.hpp index 3d6a94811..29bf5d963 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/DZE/LockboxStorage.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/DZE/LockboxStorage.hpp @@ -26,7 +26,7 @@ class LockboxStorage: Land_A_tent { packedClass = "WeaponHolder_ItemLockbox"; }; -class WeaponHolder_ItemLockbox: WeaponHolder { +class WeaponHolder_ItemLockbox: WeaponHolderBase { scope = public; displayName = "Lockbox"; seedItem = "ItemLockbox"; diff --git a/SQF/dayz_code/Configs/CfgVehicles/DZE/TentStorage.hpp b/SQF/dayz_code/Configs/CfgVehicles/DZE/TentStorage.hpp index ca14b137e..f899ca07d 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/DZE/TentStorage.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/DZE/TentStorage.hpp @@ -1,14 +1,5 @@ -class TentStorage: Land_A_tent { - vehicleClass = "Survival"; - transportMaxMagazines = 50; - transportMaxWeapons = 10; - transportMaxBackpacks = 5; - create = "WeaponHolder_ItemTentOld"; - constructioncount = 1; - offset[] = {0,2.5,0}; - requireplot = 0; - nounderground = 0; -}; +// DayZ tents are defined in \dayz_equip\configs\Storage.hpp + class TentStorageDomed: TentStorage { displayName = "Digital Camo Tent"; vehicleClass = "Survival"; @@ -30,33 +21,27 @@ class TentStorageDomed2: TentStorage { offset[] = {0,2.5,0}; }; -class WeaponHolder_ItemTentOld: WeaponHolder { +class WeaponHolder_ItemTentOld: WeaponHolderBase { scope = public; displayName = $STR_EQUIP_NAME_20; - class transportmagazines { - class _xx_ItemTentOld { - magazine = "ItemTentOld"; - count = 1; - }; + + class eventHandlers { + init = "[(_this select 0),'cfgMagazines','ItemTentOld'] execVM '\z\addons\dayz_code\init\object_pickupAction.sqf';"; }; }; -class WeaponHolder_ItemTentDomed: WeaponHolder { +class WeaponHolder_ItemTentDomed: WeaponHolderBase { scope = public; displayName = "Domed Desert Tent"; - class transportmagazines { - class _xx_ItemTentDomed { - magazine = "ItemTentDomed"; - count = 1; - }; + + class eventHandlers { + init = "[(_this select 0),'cfgMagazines','ItemTentDomed'] execVM '\z\addons\dayz_code\init\object_pickupAction.sqf';"; }; }; -class WeaponHolder_ItemTentDomed2: WeaponHolder { +class WeaponHolder_ItemTentDomed2: WeaponHolderBase { scope = public; displayName = "Domed Green Tent"; - class transportmagazines { - class _xx_ItemTentDomed2 { - magazine = "ItemTentDomed2"; - count = 1; - }; + + class eventHandlers { + init = "[(_this select 0),'cfgMagazines','ItemTentDomed2'] execVM '\z\addons\dayz_code\init\object_pickupAction.sqf';"; }; }; \ No newline at end of file diff --git a/SQF/dayz_code/Configs/CfgVehicles/DZE/VaultStorage.hpp b/SQF/dayz_code/Configs/CfgVehicles/DZE/VaultStorage.hpp index 894211f43..f5ebdb452 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/DZE/VaultStorage.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/DZE/VaultStorage.hpp @@ -28,7 +28,7 @@ class VaultStorageLocked: Land_A_tent { nounderground = 0; }; -class WeaponHolder_ItemVault: WeaponHolder { +class WeaponHolder_ItemVault: WeaponHolderBase { scope = public; displayName = $STR_EPOCH_SAFE; seedItem = "ItemVault"; diff --git a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeSledgehammer.hpp b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeSledgehammer.hpp index 2d8616a23..8b04ef1c5 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeSledgehammer.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Melee/MeleeSledgehammer.hpp @@ -1,41 +1,41 @@ class MeleeSledge: MeleeWeapon +{ + scope = public; + melee= "true"; + autoreload=1; + magazineReloadTime=0; + model="\z\addons\dayz_epoch\models\sledge_weaponized"; + picture="\z\addons\dayz_epoch\pictures\equip_sledge_CA.paa"; // todo icon + displayName=$STR_EQUIP_NAME_SledgeHammer; + droppeditem= "ItemSledge"; + magazines[]= { - scope = public; - melee= "true"; - autoreload=1; - magazineReloadTime=0; - model="\z\addons\dayz_epoch\models\sledge_weaponized"; - picture="\z\addons\dayz_epoch\pictures\equip_sledge_CA.paa"; // todo icon - displayName=$STR_EQUIP_SLEDGE; - droppeditem= "ItemSledge"; - magazines[]= + "Sledge_Swing" + }; + handAnim[]= + { + "OFP2_ManSkeleton", + "\dayz_weapons\anim\melee_hatchet_holding.rtm" + }; + class ItemActions + { + class Toolbelt { - "Sledge_Swing" - }; - handAnim[]= - { - "OFP2_ManSkeleton", - "\dayz_weapons\anim\melee_hatchet_holding.rtm" - }; - class ItemActions - { - class Toolbelt + text=$STR_ACTIONS_2TB; + script="spawn player_addToolbelt;"; + use[]= { - text=$STR_ACTIONS_2TB; - script="spawn player_addToolbelt;"; - use[]= - { - "MeleeSledge" - }; - output[]= - { - "ItemSledge" - }; + "MeleeSledge" + }; + output[]= + { + "ItemSledge" }; }; - class Library - { - libTextDesc=$STR_EQUIP_SLEDGE_DESC; - }; - descriptionShort=$STR_EQUIP_SLEDGE_DESC; }; + class Library + { + libTextDesc=$STR_EQUIP_SLEDGE_DESC; + }; + descriptionShort=$STR_EQUIP_SLEDGE_DESC; +}; diff --git a/SQF/dayz_code/Configs/CfgWeapons/Tools/Sledgehammer.hpp b/SQF/dayz_code/Configs/CfgWeapons/Tools/Sledgehammer.hpp index f5d6dd669..140df083f 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Tools/Sledgehammer.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Tools/Sledgehammer.hpp @@ -1,9 +1,10 @@ class ItemSledge: ItemCore { scope = public; - displayName=$STR_EQUIP_SLEDGE; + model="\z\addons\dayz_epoch\models\sledge_mag.p3d"; picture="\z\addons\dayz_epoch\pictures\equip_sledge_CA.paa"; + displayName=$STR_EQUIP_NAME_SledgeHammer; descriptionShort=$STR_EQUIP_SLEDGE_DESC; class ItemActions { diff --git a/SQF/dayz_code/compile/player_death.sqf b/SQF/dayz_code/compile/player_death.sqf index 15bd3acfb..c6d6084e9 100644 --- a/SQF/dayz_code/compile/player_death.sqf +++ b/SQF/dayz_code/compile/player_death.sqf @@ -30,6 +30,7 @@ if (dayz_onBack != "") then { _infected = if (r_player_infected && DZE_PlayerZed) then {1} else {0}; _killerMethod = "unknown"; _killerName = "unknown"; +_killerWeapon = "unknown weapon"; _killerDist = 0; if (count _this > 0) then { _killerObj = _this select 0; @@ -45,10 +46,11 @@ if (count _this > 0) then { }; if (count _this > 2) then {_killerMethod = "zombie";}; }; -if (isNil "_killerWeapon") then {_killerWeapon = "unknown weapon";}; + //Send Death Notice PVDZ_plr_Death = [dayz_characterID,0,_body,_playerID,toArray _bodyName,_infected,toArray _killerName,toArray _killerWeapon,_killerDist,toArray _killerMethod]; //Send name as array to avoid publicVariable value restrictions publicVariableServer "PVDZ_plr_Death"; +diag_log format["Debug death message vars: %1",PVDZ_plr_Death]; _id = [player,20,true,getPosATL player] call player_alertZombies; uiSleep 0.5; diff --git a/SQF/dayz_code/config.cpp b/SQF/dayz_code/config.cpp index 18c417717..666d630d2 100644 --- a/SQF/dayz_code/config.cpp +++ b/SQF/dayz_code/config.cpp @@ -49,7 +49,7 @@ class CfgMods hidePicture = 0; hideName = 0; action = "http://www.dayzepoch.com"; - version = "1.0.6"; + version = "DayZ Epoch 1.0.6"; hiveVersion = 0.96; //requiredAddons[] = {"Chernarus"}; // No need to load for other maps }; diff --git a/SQF/dayz_code/credits.txt b/SQF/dayz_code/credits.txt index f0e5b7bd6..25d5acbcf 100644 --- a/SQF/dayz_code/credits.txt +++ b/SQF/dayz_code/credits.txt @@ -73,7 +73,8 @@ feature. * Ander * Shauneh * [Nick Chow] (https://github.com/Purplish) - + * bittedanke (https://github.com/bittedanke) - fixing a problem with chances. + * ebaydayz (https://github.com/ebaydayz) ------------------------ Art Work diff --git a/SQF/dayz_code/music.fsm b/SQF/dayz_code/music.fsm index f66eb0937..6e088eb6b 100644 --- a/SQF/dayz_code/music.fsm +++ b/SQF/dayz_code/music.fsm @@ -44,8 +44,8 @@ link19[] = {15,16}; link20[] = {17,19}; link21[] = {18,17}; link22[] = {19,11}; -globals[] = {25.000000,1,0,0,0,640,480,1,34,6316128,1,-451.823578,687.817871,513.030151,-228.021362,1401,1030,1}; -window[] = {2,-1,-1,-1,-1,804,52,1492,52,3,1419}; +globals[] = {25.000000,1,0,0,0,640,480,1,34,6316128,1,-451.823578,687.817871,513.030151,-228.021362,1401,901,1}; +window[] = {2,-1,-1,-1,-1,781,45,1485,29,3,1419}; *//*%FSM*/ class FSM { @@ -124,7 +124,7 @@ class FSM priority = 90.000000; to="wait"; precondition = /*%FSM*/""/*%FSM*/; - condition=/*%FSM*/"r_player_unconscious || r_player_dead"/*%FSM*/; + condition=/*%FSM*/"r_player_unconscious or r_player_dead"/*%FSM*/; action=/*%FSM*/"_delay = 20;"/*%FSM*/; }; /*%FSM*/ diff --git a/SQF/dayz_code/stringtable.xml b/SQF/dayz_code/stringtable.xml index 8020797e2..1debf954c 100644 --- a/SQF/dayz_code/stringtable.xml +++ b/SQF/dayz_code/stringtable.xml @@ -4546,6 +4546,9 @@ Кувалда Palice Vorschlaghammer + Almádena + Masse + Voorhamer A sledgehammer is a tool with a large, flat, often metal head, attached to a lever. diff --git a/SQF/dayz_code/system/BIS_Effects/airdestruction.sqf b/SQF/dayz_code/system/BIS_Effects/airdestruction.sqf index 34e4db7d5..02c52a225 100644 --- a/SQF/dayz_code/system/BIS_Effects/airdestruction.sqf +++ b/SQF/dayz_code/system/BIS_Effects/airdestruction.sqf @@ -31,8 +31,9 @@ _tv=11; //Remove weapons/ammo to prevent explosion. Script will create its own explosions (doesnt work?) removeallweapons _v; - -if (local _v) then {_expl=createVehicle ["HelicopterExploSmall", (getPosATL _v), [], 0, "CAN_COLLIDE"];}; +if((local _v) AND (_v isKindOf"Air") )then{ + _expl=createVehicle["HelicopterExploSmall",(getPosATL _v),[],0,"CAN_COLLIDE"]; +}; if (!isDedicated) then { //dw, particle stuff don't need run on dedicated while {_i <1200 && ((velocity _v select 2)<-20 || (getPosATL _v select 2)>8) && !(alive _v) && !(isnull _v) && (getPosATL _v select 2)>1} do @@ -92,7 +93,7 @@ if (!isDedicated) then { //dw, particle stuff don't need run on dedicated clearvehicleinit _v; deleteVehicle _v; _v =(_wreck) createvehicle _pos; - {_x moveincargo _v} count _crw; + {_x moveincargo _v} foreach _crw; _v setVectorDirAndUp [_dir,_vecUp]; _v setFuel 0; _v setdamage 0; @@ -126,7 +127,7 @@ else clearvehicleinit _v; deleteVehicle _v; _v =(_wreck) createvehicle _pos; - {_x moveincargo _v} count _crw; + {_x moveincargo _v} foreach _crw; //uiSleep 0.05; _v setvelocity _vel; //_v setPos _pos; diff --git a/SQF/dayz_code/system/BIS_Effects/init.sqf b/SQF/dayz_code/system/BIS_Effects/init.sqf index 66d052189..0bb96f0eb 100644 --- a/SQF/dayz_code/system/BIS_Effects/init.sqf +++ b/SQF/dayz_code/system/BIS_Effects/init.sqf @@ -1,7 +1,7 @@ BIS_Effects_Init = true; //A2 won't overwrite this if var is not nil /* BIS_Effects_* fixes from Dwarden */ diag_log "Res3tting B!S effects..."; -BIS_Effects_EH_Fired=compile preprocessFileLineNumbers "\ca\Data\ParticleEffects\SCRIPTS\fired.sqf"; +BIS_Effects_EH_Fired=compile preprocessFileLineNumbers "\ca\Data\ParticleEffects\SCRIPTS\fired.sqf"; // Allows tanks to use smoke counter measures BIS_Effects_EH_Killed = compile preprocessFileLineNumbers "\z\addons\dayz_code\system\BIS_Effects\killed.sqf"; BIS_Effects_Rifle = {false}; BIS_Effects_Cannon=compile preprocessFileLineNumbers "\ca\Data\ParticleEffects\SCRIPTS\muzzle\cannon.sqf"; diff --git a/SQF/dayz_code/system/BIS_Effects/secondaries.sqf b/SQF/dayz_code/system/BIS_Effects/secondaries.sqf index 16cc1015b..084d8f8f1 100644 --- a/SQF/dayz_code/system/BIS_Effects/secondaries.sqf +++ b/SQF/dayz_code/system/BIS_Effects/secondaries.sqf @@ -10,7 +10,7 @@ if (count _this > 2) then {_lifecheck=_this select 2}; _int = _int min 3; -if (!((_v isKindOf "Air")||{((_v isKindOf "LandVehicle")||{(_v isKindOf "Ship")})})) exitWith {}; +if (!((_v isKindOf "Air")OR{((_v isKindOf "LandVehicle")OR{(_v isKindOf "Ship")})})) exitWith {}; _effect2pos = _v selectionposition "destructionEffect2"; @@ -23,5 +23,5 @@ while {_int>1} do { uiSleep _x; if((_lifecheck&&(alive _v))||(isnull _v)||(((getposASL _v)select 2)<0))exitwith{}; - createVehicle ["SmallSecondary", (_v modelToWorld _effect2pos), [], 0, "CAN_COLLIDE"]; -}forEach(_list); \ No newline at end of file + "SmallSecondary" createvehicle(_v modelToWorld _effect2pos); +}foreach(_list); \ No newline at end of file diff --git a/SQF/dayz_code/system/DynamicWeatherEffects.sqf b/SQF/dayz_code/system/DynamicWeatherEffects.sqf index a39d4c7ff..405016792 100644 --- a/SQF/dayz_code/system/DynamicWeatherEffects.sqf +++ b/SQF/dayz_code/system/DynamicWeatherEffects.sqf @@ -506,10 +506,10 @@ if (isServer) then { }; if (_debug) then { - uisleep 1; + uiSleep 1; } else { - uisleep 10; + uiSleep 10; }; }; }; diff --git a/SQF/dayz_code/system/REsec.sqf b/SQF/dayz_code/system/REsec.sqf index f5c07a317..0b4c685c4 100644 --- a/SQF/dayz_code/system/REsec.sqf +++ b/SQF/dayz_code/system/REsec.sqf @@ -1,33 +1,28 @@ -/* - Created exclusively for ArmA2:OA - DayZMod. - Please request permission to use/alter/distribute from project leader (R4Z0R49) && the author (facoptere@gmail.com) -*/ - -_REMOVED_LIB = ["addAction", "addEventhandler", "addMagazine", "addMagazineCargo", "addWeapon","addWeaponCargo", "addWPCur", "animate", "callVar", "clearMagazineCargo", "clearWeaponCargo", "createDiaryRecord","createMarkerLocal", "createSimpleTask", "createTaskSet", "debugLog", "deleteWP", "enablesimulation", "endMission","execfsm", "fadeMusic", "fadeSound", "failMission", "globalChat", "globalRadio", "groupChat", "groupRadio","hideObject", "hint", "hintC", "kbAddTopic", "kbreact", "kbRemoveTopic", "kbtell", "land", "move", "moveIn","playAction", "playActionnow", "playmovenow", "playMusic", "playsound", "removeAction","removeAllWeapons", "setCaptive", "setCurrentTask", "setCurrentTaskArrays", "setDate", "setDir", "setGroupID","setMarkerPosLocal", "setObjectTexture", "setSimpleTaskDescription", "setTaskState", "setWPdesc", "setWPtype","showCommandingMenu", "sideChat", "sideRadio", "skiptime", "spawn", "switchAction", "switchCamera", "taskHint","titleCut", "Hangender"]; -_TRACED_LIB = ["execVM", "JIPexec", "JIPrequest", "say", "playmove", "switchmove", "titleText"]; +// (c) facoptere@gmail.com, licensed to DayZMod for the community +#include "REsec.hpp" waitUntil{!isNil "BIS_MPF_InitDone"}; -private["_ofn","_nfn","_REMOVED_LIB","_TRACED_LIB"]; +private["_ofn","_nfn"]; { _ofn=format["r%1code",_x]; _nfn=format["r%1code%2",_x,round(random(100000))]; if(_x=="execVM")then{ - call compile format["%1=%2;%2={if((count _this>=3)&&{(!((_this select 2)IN%3))})then{diag_log(""WARNING RE %2 with illegal args:""+str(_this));}else{_this call %1}};",_nfn,_ofn,["ca\Modules\Functions\init.sqf"]]; + call compile format["%1=%2;%2={if((count _this>=3)AND{(!((_this select 2)IN%3))})then{diag_log(""WARNING RE %2 with illegal args:""+str(_this));}else{_this call %1}};",_nfn,_ofn,Stringify(WHITELISTED_EXECVM)]; }else{ #ifdef RESEC_VERBOSE call compile format ["%1=%2;%2={diag_log(""RE %2 args:""+str(_this));_this call %1};",_nfn,_ofn]; #endif }; -}count _TRACED_LIB; +}foreach TRACED_LIB; { _ofn=format["r%1code",_x]; call compile format["%1={diag_log(""WARNING illegal RE %1 with args:""+str(_this));};",_ofn]; -}count _REMOVED_LIB; +}foreach REMOVED_LIB; #ifndef SKIP_REMOTEEXECUTIONSERVER []spawn{ - while {(1 == 1)} do { + while{(1 == 1)}do{ private["_nfn"]; waitUntil{BIS_PathMPscriptCommandsCustom=="\ca\Modules\MP\data\scriptCommandsCustom\"}; _nfn="BIS_MPF_remoteExecutionServer"+str(round(random(100000))); @@ -45,8 +40,8 @@ private["_ofn","_nfn","_REMOVED_LIB","_TRACED_LIB"]; }; if(typeName _co==""STRING"")then{ { - if(!((_x>=65&&_x<=90)||(_x>=97&&_x<=122))) exitWith {diag_log(""WARNING possible code injection args:""+str(_this)); _this=[];}; - }count (toArray _co); + if(!((_x>=65&&_x<=90)OR(_x>=97&&_x<=122))) exitWith {diag_log(""WARNING possible code injection args:""+str(_this)); _this=[];}; + }forEach toArray _co; }; }; _this call "+_nfn+"};" @@ -58,4 +53,4 @@ private["_ofn","_nfn","_REMOVED_LIB","_TRACED_LIB"]; uiSleep 1; }; }; -#endif \ No newline at end of file +#endif diff --git a/SQF/dayz_code/system/antihack.sqf b/SQF/dayz_code/system/antihack.sqf index 557bd6a92..4791535a1 100644 --- a/SQF/dayz_code/system/antihack.sqf +++ b/SQF/dayz_code/system/antihack.sqf @@ -3,121 +3,20 @@ inGameUISetEventHandler ["PrevAction","false"]; inGameUISetEventHandler ["NextAction","false"]; inGameUISetEventHandler ["Action","false"]; -/* - Anti-Teleport - Created By Razor / Refactored By Alby & CopyPasted to Epoch by Skaronator -*/ - - -/* Moved to scheduled security - -private ["_log","_playerName","_playerUID","_PUID","_al1veOnce","_debug","_lastpos","_lastheight","_lasttime","_lastVehicle","_v","_h","_topv","_toph","_curpos","_distance","_acceptableDistance","_curtime","_difftime","_plant","_curheight","_speed","_topSpeed","_terrainHeight","_differenceCheck","_lastPosVar","_safetyVehicle","_curPos"]; - -waitUntil {vehicle player == player}; - -[] spawn { - private ["_playerName","_playerUID"]; - _playerName = name player; - _playerUID = [player] call FNC_GetPlayerUID; - while {1 == 1} do { - if (typeName player != "OBJECT") then { - PVDZE_atp = format["WARNING typename error for player UID#%1", _playerUID]; - publicVariableServer "PVDZE_atp"; - //forceEnd; - endMission "LOSER"; - uiSleep 10; //Bypass spam - }; - }; - endMission "LOSER"; -}; - -[] spawn { - _playerName = name player; - _playerUID = [player] call FNC_GetPlayerUID; - while {true} do { - uiSleep 5; - }; - PVDZE_atp = format["WARNING PLAYER WITH NAME (%1) && UID# (%2) HAS CHANGED THE TRUE VALUE TO FALSE", _playerName, _playerUID]; - publicVariableServer "PVDZE_atp"; - endMission "LOSER"; - uiSleep 10; -}; - -[] spawn { - _al1veOnce = false; - if (!_al1veOnce) then { - private [ "_loc", "_plant","_debug"]; - _debug = getMarkerpos "respawn_west"; - // check that plants libs are properly loaded - // thanks to Tansien the great - // run only once per character life - { - _plant = _x createVehicleLocal _debug; - uiSleep 0.1; - if (sizeOf _x == 0) exitWith { - PVDZE_atp = "Plants texture hack for type " + _x; - publicVariableServer "PVDZE_atp"; - endMission "LOSER"; - }; - deleteVehicle _plant; - } count ["grass", "prunus", "picea", "fallentree", "phragmites", "acer", "amygdalusn", "Brush", "fiberplant", "amygdalusc", "boulder"]; - diag_log format [ "%1: Plants libs tests done!", __FILE__]; - }; - _al1veOnce = true; -}; - -while {1 == 1} do { - _debug = getMarkerpos "respawn_west"; - _lastpos = getPosATL (vehicle player); - _lastheight = (ATLtoASL _lastpos) select 2; - _lasttime = diag_ticktime; - _lastVehicle = vehicle player; - - // freefall detection: - _v = 0; - _h = 0; - _topv = 0; - _toph = 0; - - while {((typeName player == "OBJECT") && {((player in playableUnits) || {(alive player)})})} do { - _curpos = getPosATL (vehicle player); - _distance = _lastpos distance _curpos; - _curtime = diag_ticktime; - _difftime = _curtime - _lasttime; - _acceptableDistance = if (_lastVehicle isKindOf "Plane") then [{15},{10}]; - - if ((_distance > _acceptableDistance) || {(_difftime > 1)}) then { - _curheight = (ATLtoASL _curpos) select 2; - _speed = _distance / _difftime; - _topSpeed = if (_acceptableDistance == 15) then { 20; } else { 10; }; - if (vehicle player != player) then { - if (_acceptableDistance == 15) then { - _topSpeed = (getNumber (configFile >> "CfgVehicles" >> typeOf (vehicle player) >> "maxSpeed")) max 500; - } else { - _topSpeed = (getNumber (configFile >> "CfgVehicles" >> typeOf (vehicle player) >> "maxSpeed")) min 500; - }; - }; - _terrainHeight = getTerrainHeightASL [_curpos select 0, _curpos select 1]; - _safetyVehicle = vehicle player; - if (_lastVehicle == vehicle player) then { - if ((_speed > _topSpeed) && (alive player) && ((driver (vehicle player) == player) || (isNull (driver (vehicle player)))) && (_debug distance _lastpos > 3000) && !((vehicle player == player) && (_curheight < _lastheight) && ((_curheight - _terrainHeight) > 1))) then { - (vehicle player) setposATL _lastpos; - _PUID = [player] call FNC_GetPlayerUID; - PVDZE_atp = format["TELEPORT REVERT for player UID#%1 from %2 to %3, %4 meters, now at %5", _PUID, _lastpos, _curPos, round(_lastpos distance _curpos), getPosATL player]; - publicVariableServer "PVDZE_atp"; - } else { - _lastpos = _curpos; - _lastheight = _curheight; - }; - _lasttime = _curtime; - }; - if (_safetyVehicle == vehicle player) then { - _lastVehicle = vehicle player; - }; - - }; - uiSleep 0.25; - }; +// (c) facoptere@gmail.com, licensed to DayZMod for the community +// +// check that plants libs are properly loaded +// thanks to Tansien the great +// run only once per character life +{ + _plant = _x createVehicleLocal dayz_centerMarker; uiSleep 0.1; -}; -endMission "LOSER"; -*/ \ No newline at end of file + if (sizeOf _x == 0) exitWith { + PVDZ_sec_atp = "Plants texture hack for type " + _x; + publicVariableServer "PVDZ_sec_atp"; + endMission "LOSER"; + }; + deleteVehicle _plant; +} count ["grass","prunus","picea","fallentree","phragmites","acer","amygdalusn","Brush","fiberplant","amygdalusc","boulder"]; + +diag_log format ["%1: Plants libs tests done!",__FILE__]; \ No newline at end of file diff --git a/SQF/dayz_code/system/building_monitor.sqf b/SQF/dayz_code/system/building_monitor.sqf index 50614dbf2..9c988c643 100644 --- a/SQF/dayz_code/system/building_monitor.sqf +++ b/SQF/dayz_code/system/building_monitor.sqf @@ -1,7 +1,7 @@ -private ["_building","_GroupMarker","_nearby","_run","_items"]; -_building = _this select 0; -_GroupMarker = _this select 1; -_items = _this select 2; +private ["_nearby","_run"]; +_building = _this select 0; +//_GroupMarker = _this select 1; +_items = _this select 2; _run = true; _nearby = false; while {_run} do { @@ -9,10 +9,11 @@ while {_run} do { _nearby = false; { if (_x distance _building < 500) then {_nearby = true}; - } count (call BIS_fnc_listPlayers); + } forEach (call BIS_fnc_listPlayers); if (!_nearby) then {_run = false}; uiSleep 5; }; -{deleteVehicle _x;} count _items; +{deleteVehicle _x;} forEach _items; + _building setVariable ["looted",(DateToNumber date),true]; \ No newline at end of file diff --git a/SQF/dayz_code/system/fire_monitor.sqf b/SQF/dayz_code/system/fire_monitor.sqf index 1ee5ded44..06ace7491 100644 --- a/SQF/dayz_code/system/fire_monitor.sqf +++ b/SQF/dayz_code/system/fire_monitor.sqf @@ -52,4 +52,4 @@ while {alive _firePlace} do { uiSleep 1; }; uiSleep 1; -}; \ No newline at end of file +}; diff --git a/SQF/dayz_code/system/handleGear.sqf b/SQF/dayz_code/system/handleGear.sqf index 1eebb3a00..2aca86ca5 100644 --- a/SQF/dayz_code/system/handleGear.sqf +++ b/SQF/dayz_code/system/handleGear.sqf @@ -560,4 +560,4 @@ if _doFilter then { //[] call _setFilterIcon; }; -_output \ No newline at end of file +_output diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/BlackLake.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/BlackLake.sqf index e27e862db..43e17b266 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/BlackLake.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/BlackLake.sqf @@ -1,8 +1,8 @@ -if (!isServer) then { +if (isServer) then { _vehicle_1 = objNull; if (true) then { - _this = "UralWreck" createVehicleLocal [13383.615, 12108.852, -7.6293945e-005]; + _this = "UralWreck" createVehicle [13383.615, 12108.852, -7.6293945e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_1 = _this; @@ -13,7 +13,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_2 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [13379.557, 12107.342, -0.00049591064]; + _this = "Body1" createVehicle [13379.557, 12107.342, -0.00049591064]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_2 = _this; @@ -23,7 +23,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_3 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [13377.169, 12106.324, -0.00025939941]; + _this = "Body2" createVehicle [13377.169, 12106.324, -0.00025939941]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_3 = _this; @@ -34,7 +34,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_5 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [13385.378, 12102.333, -0.00020599365]; + _this = "Body1" createVehicle [13385.378, 12102.333, -0.00020599365]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_5 = _this; @@ -44,7 +44,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_10 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [13384.223, 12103.464, -0.00019836426]; + _this = "Body2" createVehicle [13384.223, 12103.464, -0.00019836426]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_10 = _this; @@ -55,7 +55,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_12 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [13371.131, 12099.254, 0.00051116943]; + _this = "Body2" createVehicle [13371.131, 12099.254, 0.00051116943]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_12 = _this; @@ -66,7 +66,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_14 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [13345.344, 12055.598, -5.3405762e-005]; + _this = "Body2" createVehicle [13345.344, 12055.598, -5.3405762e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_14 = _this; @@ -77,7 +77,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_16 = objNull; if (true) then { - _this = "Mass_grave" createVehicleLocal [13394.821, 12091.484, -0.047801755]; + _this = "Mass_grave" createVehicle [13394.821, 12091.484, -0.047801755]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_16 = _this; @@ -88,7 +88,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_18 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [13350.278, 12058.968, -0.00012207031]; + _this = "Body2" createVehicle [13350.278, 12058.968, -0.00012207031]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_18 = _this; @@ -99,7 +99,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_21 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [13347.763, 12056.695, 0.00011444092]; + _this = "Body1" createVehicle [13347.763, 12056.695, 0.00011444092]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_21 = _this; @@ -109,7 +109,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_23 = objNull; if (true) then { - _this = "Mass_grave" createVehicleLocal [13277.084, 11933.121, -2.2888184e-005]; + _this = "Mass_grave" createVehicle [13277.084, 11933.121, -2.2888184e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_23 = _this; @@ -119,7 +119,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_25 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [13274.308, 11937.976, 1.5258789e-005]; + _this = "Body1" createVehicle [13274.308, 11937.976, 1.5258789e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_25 = _this; @@ -129,7 +129,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_27 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [13277.561, 11929.183, -2.2888184e-005]; + _this = "Body1" createVehicle [13277.561, 11929.183, -2.2888184e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_27 = _this; @@ -139,7 +139,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_30 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [13278.021, 11938.413]; + _this = "Body2" createVehicle [13278.021, 11938.413]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_30 = _this; @@ -150,7 +150,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_32 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [13281.352, 11935.071, 1.5258789e-005]; + _this = "Body2" createVehicle [13281.352, 11935.071, 1.5258789e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_32 = _this; diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Dobryy.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Dobryy.sqf index ced7235e2..ea0c8cdd9 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Dobryy.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Dobryy.sqf @@ -1,8 +1,8 @@ -if (!isServer) then { +if (isServer) then { _vehicle_186 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [10174.857, 3126.1104, -1.9073486e-005]; + _this = "Body1" createVehicle [10174.857, 3126.1104, -1.9073486e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_186 = _this; @@ -12,7 +12,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_189 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [10177.264, 3126.8271, 1.1444092e-005]; + _this = "Body2" createVehicle [10177.264, 3126.8271, 1.1444092e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_189 = _this; @@ -23,7 +23,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_192 = objNull; if (true) then { - _this = "BRDMWreck" createVehicleLocal [10212.747, 3181.915, -2.2888184e-005]; + _this = "BRDMWreck" createVehicle [10212.747, 3181.915, -2.2888184e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_192 = _this; @@ -34,7 +34,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_195 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [10213.748, 3179.0986, 6.6757202e-005]; + _this = "Body1" createVehicle [10213.748, 3179.0986, 6.6757202e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_195 = _this; @@ -44,7 +44,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_198 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [10214.048, 3185.6113, -0.00019645691]; + _this = "Body2" createVehicle [10214.048, 3185.6113, -0.00019645691]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_198 = _this; @@ -55,7 +55,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_200 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [10217.711, 3180.9695, -0.00023651123]; + _this = "Body2" createVehicle [10217.711, 3180.9695, -0.00023651123]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_200 = _this; @@ -66,7 +66,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_203 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [10216.19, 3186.8555, -0.00011634827]; + _this = "Body1" createVehicle [10216.19, 3186.8555, -0.00011634827]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_203 = _this; diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Gvozdno.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Gvozdno.sqf index 4cdd77549..2d1304b15 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Gvozdno.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Gvozdno.sqf @@ -1,8 +1,8 @@ -if (!isServer) then { +if (isServer) then { _vehicle_150 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [8294.6152, 12149.16, 3.0517578e-005]; + _this = "Body1" createVehicle [8294.6152, 12149.16, 3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_150 = _this; @@ -12,7 +12,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_152 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [8287.1045, 12132.071, -0.00047302246]; + _this = "Body1" createVehicle [8287.1045, 12132.071, -0.00047302246]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_152 = _this; @@ -22,7 +22,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_154 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [8264.8877, 12148.402, 0.00038146973]; + _this = "Body1" createVehicle [8264.8877, 12148.402, 0.00038146973]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_154 = _this; @@ -32,7 +32,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_157 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [8268.8555, 12156.784, -0.00012207031]; + _this = "Body2" createVehicle [8268.8555, 12156.784, -0.00012207031]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_157 = _this; @@ -43,7 +43,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_159 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [8278.6172, 12133.853, 0.00077819824]; + _this = "Body2" createVehicle [8278.6172, 12133.853, 0.00077819824]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_159 = _this; diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Kabanino.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Kabanino.sqf index 718a20f2c..a6bcbd957 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Kabanino.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Kabanino.sqf @@ -1,8 +1,8 @@ -if (!isServer) then { +if (isServer) then { _vehicle_314 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [5626.4521, 8577.7822, 0]; + _this = "Body1" createVehicle [5626.4521, 8577.7822, 0]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_314 = _this; @@ -12,7 +12,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_316 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [5653.271, 8565.1514, -3.0517578e-005]; + _this = "Body1" createVehicle [5653.271, 8565.1514, -3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_316 = _this; @@ -22,7 +22,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_319 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [5631.9009, 8564.624, 9.1552734e-005]; + _this = "Body2" createVehicle [5631.9009, 8564.624, 9.1552734e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_319 = _this; @@ -33,7 +33,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_321 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [5626.8066, 8571.2871]; + _this = "Body2" createVehicle [5626.8066, 8571.2871]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_321 = _this; @@ -44,7 +44,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_323 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [5624.5215, 8586.6445, -3.0517578e-005]; + _this = "Body2" createVehicle [5624.5215, 8586.6445, -3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_323 = _this; diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Kopyto.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Kopyto.sqf index 438a29e49..3dfae7211 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Kopyto.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Kopyto.sqf @@ -1,8 +1,8 @@ -if (!isServer) then { +if (isServer) then { _vehicle_162 = objNull; if (true) then { - _this = "Mass_grave" createVehicleLocal [7698.6094, 3984.0344, 5.3405762e-005]; + _this = "Mass_grave" createVehicle [7698.6094, 3984.0344, 5.3405762e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_162 = _this; @@ -13,7 +13,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_165 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [7696.6646, 3979.2568, 6.1035156e-005]; + _this = "Body1" createVehicle [7696.6646, 3979.2568, 6.1035156e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_165 = _this; @@ -23,7 +23,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_167 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [7705.2397, 3986.8789, -7.6293945e-006]; + _this = "Body1" createVehicle [7705.2397, 3986.8789, -7.6293945e-006]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_167 = _this; @@ -33,7 +33,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_170 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [7701.4297, 3987.833, 4.5776367e-005]; + _this = "Body2" createVehicle [7701.4297, 3987.833, 4.5776367e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_170 = _this; @@ -44,7 +44,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_172 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [7693.4331, 3985.4343, 0.00016784668]; + _this = "Body2" createVehicle [7693.4331, 3985.4343, 0.00016784668]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_172 = _this; @@ -55,7 +55,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_174 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [7737.8218, 3956.1387, 3.8146973e-005]; + _this = "Body2" createVehicle [7737.8218, 3956.1387, 3.8146973e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_174 = _this; @@ -66,7 +66,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_176 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [7701.2686, 3978.0706, 1.9073486e-005]; + _this = "Body2" createVehicle [7701.2686, 3978.0706, 1.9073486e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_176 = _this; @@ -77,7 +77,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_178 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [7705.8154, 3981.1963, 7.2479248e-005]; + _this = "Body2" createVehicle [7705.8154, 3981.1963, 7.2479248e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_178 = _this; @@ -88,7 +88,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_180 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [7705.1436, 3975.3965, -8.392334e-005]; + _this = "Body2" createVehicle [7705.1436, 3975.3965, -8.392334e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_180 = _this; @@ -99,7 +99,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_183 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [7703.9932, 3978.3486, -2.2888184e-005]; + _this = "Body1" createVehicle [7703.9932, 3978.3486, -2.2888184e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_183 = _this; diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Mogilevka.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Mogilevka.sqf index 057d4c491..d62b939c1 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Mogilevka.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Mogilevka.sqf @@ -1,8 +1,8 @@ -if (!isServer) then { +if (isServer) then { _vehicle_271 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [7688.604, 5947.6357, 4.5776367e-005]; + _this = "Body1" createVehicle [7688.604, 5947.6357, 4.5776367e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_271 = _this; @@ -12,7 +12,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_273 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [7688.8301, 5927.563, -3.0517578e-005]; + _this = "Body1" createVehicle [7688.8301, 5927.563, -3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_273 = _this; @@ -22,7 +22,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_281 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [7692.501, 5935.375, -4.5776367e-005]; + _this = "Body2" createVehicle [7692.501, 5935.375, -4.5776367e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_281 = _this; @@ -33,7 +33,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_283 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [7700.9634, 5931.4126, -4.5776367e-005]; + _this = "Body2" createVehicle [7700.9634, 5931.4126, -4.5776367e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_283 = _this; @@ -44,7 +44,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_285 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [7858.001, 5657.7495, 1.5258789e-005]; + _this = "Body2" createVehicle [7858.001, 5657.7495, 1.5258789e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_285 = _this; @@ -55,7 +55,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_287 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [7852.356, 5674.4395, -4.5776367e-005]; + _this = "Body2" createVehicle [7852.356, 5674.4395, -4.5776367e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_287 = _this; @@ -66,7 +66,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_290 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [7857.3604, 5665.8076, 1.5258789e-005]; + _this = "Body1" createVehicle [7857.3604, 5665.8076, 1.5258789e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_290 = _this; diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Nadezdinho.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Nadezdinho.sqf index 719f9a1f9..ce3fde9ad 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Nadezdinho.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Nadezdinho.sqf @@ -1,8 +1,8 @@ -if (!isServer) then { +if (isServer) then { _vehicle_399 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [5749.7417, 4099.6704, -8.392334e-005]; + _this = "Body1" createVehicle [5749.7417, 4099.6704, -8.392334e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_399 = _this; @@ -12,7 +12,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_401 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [5738.4092, 4094.8413, 6.1035156e-005]; + _this = "Body1" createVehicle [5738.4092, 4094.8413, 6.1035156e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_401 = _this; @@ -22,7 +22,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_403 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [5721.3667, 4130.4922, 6.8664551e-005]; + _this = "Body1" createVehicle [5721.3667, 4130.4922, 6.8664551e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_403 = _this; @@ -32,7 +32,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_406 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [5731.2964, 4127.3643, -0.00024414063]; + _this = "Body2" createVehicle [5731.2964, 4127.3643, -0.00024414063]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_406 = _this; @@ -43,7 +43,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_408 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [5737.1704, 4123.252, -0.00011444092]; + _this = "Body2" createVehicle [5737.1704, 4123.252, -0.00011444092]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_408 = _this; @@ -54,7 +54,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_410 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [5739.8633, 4117.3682, 7.6293945e-005]; + _this = "Body2" createVehicle [5739.8633, 4117.3682, 7.6293945e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_410 = _this; @@ -65,7 +65,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_412 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [5749.9834, 4102.6377, 4.5776367e-005]; + _this = "Body2" createVehicle [5749.9834, 4102.6377, 4.5776367e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_412 = _this; diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthNadezdinho.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthNadezdinho.sqf index e813c7a9f..5480c848d 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthNadezdinho.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthNadezdinho.sqf @@ -1,8 +1,8 @@ -if (!isServer) then { +if (isServer) then { _vehicle_375 = objNull; if (true) then { - _this = "UAZWreck" createVehicleLocal [5802.0796, 5216.9868, -0.1246307]; + _this = "UAZWreck" createVehicle [5802.0796, 5216.9868, -0.1246307]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_375 = _this; @@ -13,7 +13,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_378 = objNull; if (true) then { - _this = "UralWreck" createVehicleLocal [5798.4321, 5161.209, 4.5776367e-005]; + _this = "UralWreck" createVehicle [5798.4321, 5161.209, 4.5776367e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_378 = _this; @@ -24,7 +24,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_381 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [5796.3213, 5168.3052, -0.00012207031]; + _this = "Body2" createVehicle [5796.3213, 5168.3052, -0.00012207031]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_381 = _this; @@ -35,7 +35,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_383 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [5794.877, 5157.9111, -0.00021362305]; + _this = "Body2" createVehicle [5794.877, 5157.9111, -0.00021362305]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_383 = _this; @@ -46,7 +46,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_385 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [5792.832, 5163.8003, -4.5776367e-005]; + _this = "Body2" createVehicle [5792.832, 5163.8003, -4.5776367e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_385 = _this; @@ -57,7 +57,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_387 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [5802.4307, 5213.1123, -0.00016784668]; + _this = "Body2" createVehicle [5802.4307, 5213.1123, -0.00016784668]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_387 = _this; @@ -68,7 +68,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_389 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [5800.0649, 5220.5977, -3.0517578e-005]; + _this = "Body2" createVehicle [5800.0649, 5220.5977, -3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_389 = _this; @@ -79,7 +79,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_392 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [5804.439, 5215.0063, -0.0001373291]; + _this = "Body1" createVehicle [5804.439, 5215.0063, -0.0001373291]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_392 = _this; @@ -89,7 +89,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_394 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [5799.7075, 5164.0625, 0]; + _this = "Body1" createVehicle [5799.7075, 5164.0625, 0]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_394 = _this; @@ -99,7 +99,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_396 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [5795.9951, 5165.9434, 1.5258789e-005]; + _this = "Body1" createVehicle [5795.9951, 5165.9434, 1.5258789e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_396 = _this; diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthPusta.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthPusta.sqf index 65b0ddd50..12465056d 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthPusta.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthPusta.sqf @@ -1,8 +1,8 @@ -if (!isServer) then { +if (isServer) then { _vehicle_259 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [9221.8047, 4960.5381, 0]; + _this = "Body1" createVehicle [9221.8047, 4960.5381, 0]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_259 = _this; @@ -12,7 +12,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_261 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [9215.4082, 4959.6289, -2.2888184e-005]; + _this = "Body1" createVehicle [9215.4082, 4959.6289, -2.2888184e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_261 = _this; @@ -22,7 +22,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_264 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9217.5645, 4961.3643, -7.6293945e-005]; + _this = "Body2" createVehicle [9217.5645, 4961.3643, -7.6293945e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_264 = _this; @@ -33,7 +33,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_266 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9220.0195, 4953.0513, -2.2888184e-005]; + _this = "Body2" createVehicle [9220.0195, 4953.0513, -2.2888184e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_266 = _this; @@ -44,7 +44,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_269 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [9217.207, 4953.2314, 7.6293945e-006]; + _this = "Body1" createVehicle [9217.207, 4953.2314, 7.6293945e-006]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_269 = _this; diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthTopolka.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthTopolka.sqf index 430ed9a83..3ce37918c 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthTopolka.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthTopolka.sqf @@ -1,8 +1,8 @@ -if (!isServer) then { +if (isServer) then { _vehicle_235 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [10044.766, 4155.1172, 0.00061035156]; + _this = "Body1" createVehicle [10044.766, 4155.1172, 0.00061035156]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_235 = _this; @@ -12,7 +12,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_237 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [10037.467, 4167.7607, -0.00018310547]; + _this = "Body1" createVehicle [10037.467, 4167.7607, -0.00018310547]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_237 = _this; @@ -22,7 +22,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_240 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [10040.509, 4159.4536, 1.9073486e-005]; + _this = "Body2" createVehicle [10040.509, 4159.4536, 1.9073486e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_240 = _this; @@ -33,7 +33,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_242 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [10008.558, 4198.1191, 0.00020217896]; + _this = "Body2" createVehicle [10008.558, 4198.1191, 0.00020217896]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_242 = _this; @@ -44,7 +44,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_244 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9981.3945, 4218.0845, 5.7220459e-005]; + _this = "Body2" createVehicle [9981.3945, 4218.0845, 5.7220459e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_244 = _this; @@ -55,7 +55,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_246 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9970.2891, 4214.0723, 0.00016021729]; + _this = "Body2" createVehicle [9970.2891, 4214.0723, 0.00016021729]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_246 = _this; @@ -66,7 +66,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_248 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9972.3984, 4216.5981, -9.5367432e-005]; + _this = "Body2" createVehicle [9972.3984, 4216.5981, -9.5367432e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_248 = _this; @@ -77,7 +77,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_250 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9980.2734, 4168.4639, 1.9073486e-005]; + _this = "Body2" createVehicle [9980.2734, 4168.4639, 1.9073486e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_250 = _this; @@ -88,7 +88,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_252 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [10005.476, 4147.1729, -3.0517578e-005]; + _this = "Body2" createVehicle [10005.476, 4147.1729, -3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_252 = _this; @@ -99,7 +99,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_255 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [9975.0391, 4217.8608, -3.4332275e-005]; + _this = "Body1" createVehicle [9975.0391, 4217.8608, -3.4332275e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_255 = _this; @@ -109,7 +109,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_257 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [10005.835, 4200.8569, 4.9591064e-005]; + _this = "Body1" createVehicle [10005.835, 4200.8569, 4.9591064e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_257 = _this; diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Novy.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Novy.sqf index a790e64ab..542e84cb8 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Novy.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Novy.sqf @@ -1,8 +1,8 @@ -if (!isServer) then { +if (isServer) then { _vehicle_292 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [7081.7197, 7339.3687, -3.0517578e-005]; + _this = "Body1" createVehicle [7081.7197, 7339.3687, -3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_292 = _this; @@ -12,7 +12,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_295 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [7081.373, 7335.3784]; + _this = "Body2" createVehicle [7081.373, 7335.3784]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_295 = _this; @@ -23,7 +23,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_297 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [7077.8691, 7338.8906, -3.0517578e-005]; + _this = "Body2" createVehicle [7077.8691, 7338.8906, -3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_297 = _this; @@ -34,7 +34,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_299 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [7085.6162, 7311.5015]; + _this = "Body2" createVehicle [7085.6162, 7311.5015]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_299 = _this; @@ -45,7 +45,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_301 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [7088.4497, 7314.1401, -3.0517578e-005]; + _this = "Body2" createVehicle [7088.4497, 7314.1401, -3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_301 = _this; diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/PobedaDam.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/PobedaDam.sqf index c8fcfd9e4..3429fb945 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/PobedaDam.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/PobedaDam.sqf @@ -1,8 +1,8 @@ -if (!isServer) then { +if (isServer) then { _vehicle_71 = objNull; if (true) then { - _this = "UralWreck" createVehicleLocal [9457.4082, 13539.698, 0.00012207031]; + _this = "UralWreck" createVehicle [9457.4082, 13539.698, 0.00012207031]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_71 = _this; @@ -13,7 +13,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_74 = objNull; if (true) then { - _this = "Mass_grave" createVehicleLocal [9432.0479, 13551.514, 3.0517578e-005]; + _this = "Mass_grave" createVehicle [9432.0479, 13551.514, 3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_74 = _this; @@ -24,7 +24,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_77 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [9452.0176, 13542.769, 0.0001449585]; + _this = "Body1" createVehicle [9452.0176, 13542.769, 0.0001449585]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_77 = _this; @@ -34,7 +34,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_79 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [9434.6738, 13553.595, 0.00038146973]; + _this = "Body1" createVehicle [9434.6738, 13553.595, 0.00038146973]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_79 = _this; @@ -44,7 +44,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_81 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [9429.7334, 13547.495, 3.8146973e-005]; + _this = "Body1" createVehicle [9429.7334, 13547.495, 3.8146973e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_81 = _this; @@ -54,7 +54,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_84 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9431.8369, 13546.111, 0.00010681152]; + _this = "Body2" createVehicle [9431.8369, 13546.111, 0.00010681152]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_84 = _this; @@ -65,7 +65,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_86 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9440.8145, 13549.473, 5.3405762e-005]; + _this = "Body2" createVehicle [9440.8145, 13549.473, 5.3405762e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_86 = _this; @@ -76,7 +76,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_88 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9443.5781, 13542.093, 0.00016784668]; + _this = "Body2" createVehicle [9443.5781, 13542.093, 0.00016784668]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_88 = _this; @@ -87,7 +87,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_90 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9448.1299, 13545.927, -3.8146973e-005]; + _this = "Body2" createVehicle [9448.1299, 13545.927, -3.8146973e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_90 = _this; @@ -98,7 +98,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_92 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9443.166, 13549.999, -2.2888184e-005]; + _this = "Body2" createVehicle [9443.166, 13549.999, -2.2888184e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_92 = _this; @@ -109,7 +109,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_94 = objNull; if (true) then { - _this = "BRDMWreck" createVehicleLocal [9437.0771, 13544.629, 0.00090026855]; + _this = "BRDMWreck" createVehicle [9437.0771, 13544.629, 0.00090026855]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_94 = _this; @@ -119,7 +119,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_95 = objNull; if (true) then { - _this = "UAZWreck" createVehicleLocal [9444.9355, 13545.063, 0.00030517578]; + _this = "UAZWreck" createVehicle [9444.9355, 13545.063, 0.00030517578]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_95 = _this; @@ -130,7 +130,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_97 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9451.7236, 13538.354, 6.8664551e-005]; + _this = "Body2" createVehicle [9451.7236, 13538.354, 6.8664551e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_97 = _this; @@ -141,7 +141,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_99 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9673.7705, 13593.981, 1.5258789e-005]; + _this = "Body2" createVehicle [9673.7705, 13593.981, 1.5258789e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_99 = _this; @@ -152,7 +152,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_101 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9680.7686, 13595.577, 5.3405762e-005]; + _this = "Body2" createVehicle [9680.7686, 13595.577, 5.3405762e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_101 = _this; @@ -163,7 +163,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_103 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9664.4326, 13590.43, 0.0002746582]; + _this = "Body2" createVehicle [9664.4326, 13590.43, 0.0002746582]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_103 = _this; @@ -174,7 +174,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_106 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [9669.5635, 13590.899, 0.00035858154]; + _this = "Body1" createVehicle [9669.5635, 13590.899, 0.00035858154]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_106 = _this; @@ -184,7 +184,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_108 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [9657.8125, 13588.521, 0.00022125244]; + _this = "Body1" createVehicle [9657.8125, 13588.521, 0.00022125244]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_108 = _this; @@ -194,7 +194,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_110 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [9576.584, 13707.372, 9.9182129e-005]; + _this = "Body1" createVehicle [9576.584, 13707.372, 9.9182129e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_110 = _this; @@ -204,7 +204,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_112 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [9541.1582, 13704.937, -0.00039672852]; + _this = "Body1" createVehicle [9541.1582, 13704.937, -0.00039672852]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_112 = _this; @@ -214,7 +214,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_114 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [9517.6113, 13728.821, 4.5776367e-005]; + _this = "Body1" createVehicle [9517.6113, 13728.821, 4.5776367e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_114 = _this; @@ -224,7 +224,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_116 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [9474.7754, 13754.797, -0.00031280518]; + _this = "Body1" createVehicle [9474.7754, 13754.797, -0.00031280518]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_116 = _this; @@ -234,7 +234,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_118 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [9426.668, 13678.309, 5.3405762e-005]; + _this = "Body1" createVehicle [9426.668, 13678.309, 5.3405762e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_118 = _this; @@ -244,7 +244,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_120 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [9428.501, 13656.878, -3.8146973e-005]; + _this = "Body1" createVehicle [9428.501, 13656.878, -3.8146973e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_120 = _this; @@ -254,7 +254,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_123 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9423.6484, 13638.107, -2.2888184e-005]; + _this = "Body2" createVehicle [9423.6484, 13638.107, -2.2888184e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_123 = _this; @@ -265,7 +265,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_125 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9368.6328, 13630.045, 0.0001373291]; + _this = "Body2" createVehicle [9368.6328, 13630.045, 0.0001373291]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_125 = _this; @@ -276,7 +276,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_127 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9296.8057, 13615.553, 2.2888184e-005]; + _this = "Body2" createVehicle [9296.8057, 13615.553, 2.2888184e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_127 = _this; @@ -287,7 +287,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_130 = objNull; if (true) then { - _this = "Mass_grave" createVehicleLocal [9252.1475, 13511.981, 7.6293945e-006]; + _this = "Mass_grave" createVehicle [9252.1475, 13511.981, 7.6293945e-006]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_130 = _this; @@ -298,7 +298,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_133 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [9257.1104, 13508.626, 1.5258789e-005]; + _this = "Body1" createVehicle [9257.1104, 13508.626, 1.5258789e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_133 = _this; @@ -308,7 +308,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_135 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [9249.5225, 13518.601, 4.5776367e-005]; + _this = "Body1" createVehicle [9249.5225, 13518.601, 4.5776367e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_135 = _this; @@ -318,7 +318,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_137 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [9245.9922, 13513.451, 8.392334e-005]; + _this = "Body1" createVehicle [9245.9922, 13513.451, 8.392334e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_137 = _this; @@ -328,7 +328,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_140 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9256.2549, 13515.218, 0.00019073486]; + _this = "Body2" createVehicle [9256.2549, 13515.218, 0.00019073486]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_140 = _this; @@ -339,7 +339,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_142 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9247.6396, 13508.521, 9.9182129e-005]; + _this = "Body2" createVehicle [9247.6396, 13508.521, 9.9182129e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_142 = _this; @@ -350,7 +350,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_144 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [9253.5586, 13506.814, -2.2888184e-005]; + _this = "Body2" createVehicle [9253.5586, 13506.814, -2.2888184e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_144 = _this; @@ -361,7 +361,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_147 = objNull; if (true) then { - _this = "UAZWreck" createVehicleLocal [9249.2705, 13505.702, -6.1035156e-005]; + _this = "UAZWreck" createVehicle [9249.2705, 13505.702, -6.1035156e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_147 = _this; diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Pogorevka.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Pogorevka.sqf index e0c05178a..ddd631657 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Pogorevka.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Pogorevka.sqf @@ -1,8 +1,8 @@ -if (!isServer) then { +if (isServer) then { _vehicle_361 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [4212.3784, 6755.0444, 6.1035156e-005]; + _this = "Body2" createVehicle [4212.3784, 6755.0444, 6.1035156e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_361 = _this; @@ -13,7 +13,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_363 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [4220.8774, 6743.3584, -9.1552734e-005]; + _this = "Body2" createVehicle [4220.8774, 6743.3584, -9.1552734e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_363 = _this; @@ -24,7 +24,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_366 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [4220.0347, 6739.5332, 3.0517578e-005]; + _this = "Body1" createVehicle [4220.0347, 6739.5332, 3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_366 = _this; @@ -34,7 +34,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_368 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [4215.8643, 6759.1436, 3.0517578e-005]; + _this = "Body1" createVehicle [4215.8643, 6759.1436, 3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_368 = _this; @@ -44,7 +44,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_370 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [4232.8799, 6753.3657, -0.00018310547]; + _this = "Body1" createVehicle [4232.8799, 6753.3657, -0.00018310547]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_370 = _this; @@ -54,7 +54,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_372 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [4230.6279, 6744.4331, 3.0517578e-005]; + _this = "Body1" createVehicle [4230.6279, 6744.4331, 3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_372 = _this; diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Polana.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Polana.sqf index 91f667f7e..65fb2f076 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Polana.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Polana.sqf @@ -1,8 +1,8 @@ -if (!isServer) then { +if (isServer) then { _vehicle_430 = objNull; if (true) then { - _this = "UralWreck" createVehicleLocal [11433.314, 7411.0557, -0.0001373291]; + _this = "UralWreck" createVehicle [11433.314, 7411.0557, -0.0001373291]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_430 = _this; @@ -13,7 +13,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_433 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [11430.294, 7410.1196, 1.5258789e-005]; + _this = "Body1" createVehicle [11430.294, 7410.1196, 1.5258789e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_433 = _this; @@ -23,7 +23,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_435 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [11437.344, 7408.6289, -0.00012207031]; + _this = "Body1" createVehicle [11437.344, 7408.6289, -0.00012207031]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_435 = _this; @@ -33,7 +33,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_438 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [11431.472, 7408.3032, 3.0517578e-005]; + _this = "Body2" createVehicle [11431.472, 7408.3032, 3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_438 = _this; @@ -44,7 +44,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_440 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [11434.552, 7407.3159, -4.5776367e-005]; + _this = "Body2" createVehicle [11434.552, 7407.3159, -4.5776367e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_440 = _this; @@ -55,7 +55,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_442 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [11437.357, 7410.9531, -3.0517578e-005]; + _this = "Body2" createVehicle [11437.357, 7410.9531, -3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_442 = _this; @@ -66,7 +66,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_444 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [11439.242, 7406.856, -0.00012207031]; + _this = "Body2" createVehicle [11439.242, 7406.856, -0.00012207031]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_444 = _this; @@ -77,7 +77,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_446 = objNull; if (true) then { - _this = "Body" createVehicleLocal [11439.403, 7409.4946, -0.00019836426]; + _this = "Body" createVehicle [11439.403, 7409.4946, -0.00019836426]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_446 = _this; @@ -88,7 +88,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_448 = objNull; if (true) then { - _this = "Body" createVehicleLocal [11440.139, 7409.272, -0.00012207031]; + _this = "Body" createVehicle [11440.139, 7409.272, -0.00012207031]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_448 = _this; @@ -99,7 +99,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_450 = objNull; if (true) then { - _this = "Body" createVehicleLocal [11440.929, 7409.0415, -9.1552734e-005]; + _this = "Body" createVehicle [11440.929, 7409.0415, -9.1552734e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_450 = _this; @@ -110,7 +110,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_452 = objNull; if (true) then { - _this = "Body" createVehicleLocal [11441.74, 7408.8022, -7.6293945e-005]; + _this = "Body" createVehicle [11441.74, 7408.8022, -7.6293945e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_452 = _this; @@ -121,7 +121,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_454 = objNull; if (true) then { - _this = "Body" createVehicleLocal [11442.58, 7408.5737, -6.1035156e-005]; + _this = "Body" createVehicle [11442.58, 7408.5737, -6.1035156e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_454 = _this; diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Prud.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Prud.sqf index 90b179115..39ae27fc5 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Prud.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Prud.sqf @@ -1,8 +1,8 @@ -if (!isServer) then { +if (isServer) then { _vehicle_326 = objNull; if (true) then { - _this = "Mass_grave" createVehicleLocal [6565.0298, 9319.8213, 3.0517578e-005]; + _this = "Mass_grave" createVehicle [6565.0298, 9319.8213, 3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_326 = _this; @@ -13,7 +13,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_329 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [6559.8589, 9318.3184, -3.0517578e-005]; + _this = "Body2" createVehicle [6559.8589, 9318.3184, -3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_329 = _this; @@ -24,7 +24,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_331 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [6568.5313, 9322.5537, -9.1552734e-005]; + _this = "Body2" createVehicle [6568.5313, 9322.5537, -9.1552734e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_331 = _this; @@ -35,7 +35,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_333 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [6569.2568, 9317.0537, 3.0517578e-005]; + _this = "Body2" createVehicle [6569.2568, 9317.0537, 3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_333 = _this; @@ -46,7 +46,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_336 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [6563.2573, 9315.5889, -6.1035156e-005]; + _this = "Body1" createVehicle [6563.2573, 9315.5889, -6.1035156e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_336 = _this; @@ -56,7 +56,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_338 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [6559.5259, 9290.957, 3.0517578e-005]; + _this = "Body1" createVehicle [6559.5259, 9290.957, 3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_338 = _this; @@ -66,7 +66,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_340 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [6550.4502, 9272.209, 3.0517578e-005]; + _this = "Body1" createVehicle [6550.4502, 9272.209, 3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_340 = _this; @@ -76,7 +76,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_343 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [6566.4673, 9315.0459, -3.0517578e-005]; + _this = "Body2" createVehicle [6566.4673, 9315.0459, -3.0517578e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_343 = _this; diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Sosnovy.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Sosnovy.sqf index f2573b3e0..5ae14e6b8 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Sosnovy.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Sosnovy.sqf @@ -1,8 +1,8 @@ -if (!isServer) then { +if (isServer) then { _vehicle_346 = objNull; if (true) then { - _this = "Mass_grave" createVehicleLocal [3343.3696, 6476.2764, -0.00012207031]; + _this = "Mass_grave" createVehicle [3343.3696, 6476.2764, -0.00012207031]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_346 = _this; @@ -13,7 +13,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_349 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [3346.2217, 6479.2134]; + _this = "Body2" createVehicle [3346.2217, 6479.2134]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_349 = _this; @@ -24,7 +24,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_351 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [3349.7419, 6476.9492]; + _this = "Body2" createVehicle [3349.7419, 6476.9492]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_351 = _this; @@ -35,7 +35,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_354 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [3348.4307, 6479.6782, 0]; + _this = "Body1" createVehicle [3348.4307, 6479.6782, 0]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_354 = _this; @@ -45,7 +45,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_356 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [3345.9199, 6471.7793, 6.1035156e-005]; + _this = "Body1" createVehicle [3345.9199, 6471.7793, 6.1035156e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_356 = _this; @@ -55,7 +55,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_359 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [3341.0183, 6479.5151]; + _this = "Body2" createVehicle [3341.0183, 6479.5151]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_359 = _this; diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Stary.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Stary.sqf index 352555d2c..eca1103b8 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Stary.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Stary.sqf @@ -1,8 +1,8 @@ -if (!isServer) then { +if (isServer) then { _vehicle_303 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [5910.3682, 7969.2676, -0.00033569336]; + _this = "Body2" createVehicle [5910.3682, 7969.2676, -0.00033569336]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_303 = _this; @@ -13,7 +13,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_305 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [5914.7852, 7968.6514, -6.1035156e-005]; + _this = "Body2" createVehicle [5914.7852, 7968.6514, -6.1035156e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_305 = _this; @@ -24,7 +24,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_307 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [5902.3218, 7964.917, -0.00021362305]; + _this = "Body2" createVehicle [5902.3218, 7964.917, -0.00021362305]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_307 = _this; @@ -35,7 +35,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_310 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [5917.2178, 7968.6299, -0.00015258789]; + _this = "Body1" createVehicle [5917.2178, 7968.6299, -0.00015258789]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_310 = _this; @@ -45,7 +45,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_312 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [5905.082, 7966.4629, -0.00015258789]; + _this = "Body1" createVehicle [5905.082, 7966.4629, -0.00015258789]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_312 = _this; diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Topolka.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Topolka.sqf index 4b6277df2..2c60ed1d9 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Topolka.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Topolka.sqf @@ -1,8 +1,8 @@ -if (!isServer) then { +if (isServer) then { _vehicle_206 = objNull; if (true) then { - _this = "HMMWVWreck" createVehicleLocal [10336.892, 3654.115, -0.00019836426]; + _this = "HMMWVWreck" createVehicle [10336.892, 3654.115, -0.00019836426]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_206 = _this; @@ -13,7 +13,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_208 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [10336.825, 3650.8271, -2.2888184e-005]; + _this = "Body1" createVehicle [10336.825, 3650.8271, -2.2888184e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_208 = _this; @@ -23,7 +23,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_211 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [10336.369, 3657.344, 0.00030899048]; + _this = "Body2" createVehicle [10336.369, 3657.344, 0.00030899048]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_211 = _this; @@ -34,7 +34,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_213 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [10336.521, 3648.813, -0.00057220459]; + _this = "Body2" createVehicle [10336.521, 3648.813, -0.00057220459]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_213 = _this; @@ -45,7 +45,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_216 = objNull; if (true) then { - _this = "UralWreck" createVehicleLocal [10276.451, 3771.7332, -3.8146973e-006]; + _this = "UralWreck" createVehicle [10276.451, 3771.7332, -3.8146973e-006]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_216 = _this; @@ -56,7 +56,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_219 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [10271.492, 3768.1182, 1.5258789e-005]; + _this = "Body1" createVehicle [10271.492, 3768.1182, 1.5258789e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_219 = _this; @@ -66,7 +66,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_221 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [10281.723, 3764.1689, -0.00010681152]; + _this = "Body1" createVehicle [10281.723, 3764.1689, -0.00010681152]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_221 = _this; @@ -76,7 +76,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_224 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [10272.653, 3770.627, -6.4849854e-005]; + _this = "Body2" createVehicle [10272.653, 3770.627, -6.4849854e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_224 = _this; @@ -87,7 +87,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_226 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [10273.537, 3767.8638, -3.4332275e-005]; + _this = "Body2" createVehicle [10273.537, 3767.8638, -3.4332275e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_226 = _this; @@ -98,7 +98,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_228 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [10277.839, 3765.0146]; + _this = "Body2" createVehicle [10277.839, 3765.0146]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_228 = _this; @@ -109,7 +109,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_230 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [10280.47, 3766.6904, -1.9073486e-005]; + _this = "Body2" createVehicle [10280.47, 3766.6904, -1.9073486e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_230 = _this; @@ -120,7 +120,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_232 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [10278.315, 3767.0195, -5.7220459e-005]; + _this = "Body2" createVehicle [10278.315, 3767.0195, -5.7220459e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_232 = _this; diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Vysota.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Vysota.sqf index b4792c28b..7616f93ee 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Vysota.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Vysota.sqf @@ -1,8 +1,8 @@ -if (!isServer) then { +if (isServer) then { _vehicle_415 = objNull; if (true) then { - _this = "Mass_grave" createVehicleLocal [6237.6729, 3366.7668, -8.2015991e-005]; + _this = "Mass_grave" createVehicle [6237.6729, 3366.7668, -8.2015991e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_415 = _this; @@ -13,7 +13,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_418 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [6242.4287, 3364.9336, -0.00012016296]; + _this = "Body2" createVehicle [6242.4287, 3364.9336, -0.00012016296]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_418 = _this; @@ -24,7 +24,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_420 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [6242.5146, 3368.2773, 9.5367432e-005]; + _this = "Body2" createVehicle [6242.5146, 3368.2773, 9.5367432e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_420 = _this; @@ -35,7 +35,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_422 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [6236.5488, 3362.2656, 0.00039291382]; + _this = "Body2" createVehicle [6236.5488, 3362.2656, 0.00039291382]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_422 = _this; @@ -46,7 +46,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_425 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [6232.0386, 3368.0271, -0.00010108948]; + _this = "Body1" createVehicle [6232.0386, 3368.0271, -0.00010108948]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_425 = _this; @@ -56,7 +56,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_427 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [6240.8916, 3363.1448, -2.8610229e-005]; + _this = "Body1" createVehicle [6240.8916, 3363.1448, -2.8610229e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_427 = _this; diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/WillowLake.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/WillowLake.sqf index e49ed8438..8d3a054c0 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/WillowLake.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/WillowLake.sqf @@ -1,8 +1,8 @@ -if (!isServer) then { +if (isServer) then { _vehicle_35 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [13279.391, 11512.981, 0.00014877319]; + _this = "Body1" createVehicle [13279.391, 11512.981, 0.00014877319]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_35 = _this; @@ -12,7 +12,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_38 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [13280.151, 11516.151, 4.9591064e-005]; + _this = "Body2" createVehicle [13280.151, 11516.151, 4.9591064e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_38 = _this; @@ -23,7 +23,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_41 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [13277.972, 11515.6, 7.8201294e-005]; + _this = "Body2" createVehicle [13277.972, 11515.6, 7.8201294e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_41 = _this; @@ -34,7 +34,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_43 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [13301.37, 11515.237, 0.00051116943]; + _this = "Body2" createVehicle [13301.37, 11515.237, 0.00051116943]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_43 = _this; @@ -45,7 +45,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_45 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [13297.256, 11514.388, 0.00016021729]; + _this = "Body2" createVehicle [13297.256, 11514.388, 0.00016021729]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_45 = _this; @@ -56,7 +56,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_47 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [13254.801, 11606.729, -0.00050735474]; + _this = "Body2" createVehicle [13254.801, 11606.729, -0.00050735474]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_47 = _this; @@ -67,7 +67,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_50 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [13256.146, 11606.896, -0.00047111511]; + _this = "Body1" createVehicle [13256.146, 11606.896, -0.00047111511]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_50 = _this; @@ -77,7 +77,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_53 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [13257.84, 11607.229, 4.9591064e-005]; + _this = "Body2" createVehicle [13257.84, 11607.229, 4.9591064e-005]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_53 = _this; @@ -88,7 +88,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_55 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [13164.959, 11555.548, -0.00031852722]; + _this = "Body2" createVehicle [13164.959, 11555.548, -0.00031852722]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_55 = _this; @@ -99,7 +99,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_58 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [13167.143, 11555.009, 0.00015449524]; + _this = "Body1" createVehicle [13167.143, 11555.009, 0.00015449524]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_58 = _this; @@ -109,7 +109,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_60 = objNull; if (true) then { - _this = "Body1" createVehicleLocal [13173.876, 11560.699, -0.00048065186]; + _this = "Body1" createVehicle [13173.876, 11560.699, -0.00048065186]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_60 = _this; @@ -119,7 +119,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_66 = objNull; if (true) then { - _this = "Body2" createVehicleLocal [13170.959, 11553.15, 0.00039100647]; + _this = "Body2" createVehicle [13170.959, 11553.15, 0.00039100647]; _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_66 = _this; diff --git a/SQF/dayz_code/system/mission/chernarus/poi/Twains.sqf b/SQF/dayz_code/system/mission/chernarus/poi/Twains.sqf index 21754bfff..b6d5a51f7 100644 --- a/SQF/dayz_code/system/mission/chernarus/poi/Twains.sqf +++ b/SQF/dayz_code/system/mission/chernarus/poi/Twains.sqf @@ -35,7 +35,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_1 = _this; _this setDir 75.8932; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; _this setPos [10320.4,2097.65,0]; }; @@ -47,7 +47,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_2 = _this; _this setDir 75.7489; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; _this setPos [10297,2091.73,0]; }; @@ -59,7 +59,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_3 = _this; _this setDir 255.905; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; _this setPos [10308.6,2094.65,0]; }; @@ -71,7 +71,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_4 = _this; _this setDir 75.9351; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10210.7,2084.2,0]; }; @@ -83,7 +83,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_5 = _this; _this setDir 75.6848; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10282.7,2088.11,0]; }; @@ -95,7 +95,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_6 = _this; _this setDir 75.7936; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10212.2,2070.33,0]; }; @@ -107,7 +107,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_7 = _this; _this setDir 75.9703; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10201.2,2067.56,0]; }; @@ -119,7 +119,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_8 = _this; _this setDir 75.8529; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10226,2073.78,0]; }; @@ -131,7 +131,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_9 = _this; _this setDir 75.935; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10242.6,2077.98,0]; }; @@ -143,7 +143,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_10 = _this; _this setDir 185.741; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10209.6,1956.79,0]; }; @@ -166,7 +166,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_12 = _this; _this setDir 75.9063; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; _this setPos [10268.6,2084.53,0]; }; @@ -178,7 +178,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_13 = _this; _this setDir 75.9183; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; _this setPos [10256.9,2081.58,0]; }; @@ -190,7 +190,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_14 = _this; _this setDir 75.8851; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; _this setPos [10190,2064.7,0]; }; @@ -202,7 +202,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_15 = _this; _this setDir 75.8851; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; _this setPos [10071.4,2007.54,0]; }; @@ -214,7 +214,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_16 = _this; _this setDir 75.8529; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10175.7,2061.11,0]; }; @@ -226,7 +226,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_17 = _this; _this setDir 75.7936; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10161.9,2057.66,0]; }; @@ -238,7 +238,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_18 = _this; _this setDir 75.9703; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10150.9,2054.9,0]; }; @@ -250,7 +250,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_19 = _this; _this setDir 75.8748; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10196.8,2080.7,0]; }; @@ -262,7 +262,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_20 = _this; _this setDir 75.9063; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; _this setPos [10182.7,2077.18,0]; }; @@ -274,7 +274,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_21 = _this; _this setDir 75.9183; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; _this setPos [10171,2074.23,0]; }; @@ -286,7 +286,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_22 = _this; _this setDir 75.8932; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; _this setPos [10159.3,2071.3,0]; }; @@ -298,7 +298,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_23 = _this; _this setDir 75.9448; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; _this setPos [10147.6,2068.36,0]; }; @@ -310,7 +310,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_24 = _this; _this setDir 75.7456; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10151.6,2064.59,0]; }; @@ -322,7 +322,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_25 = _this; _this setDir 75.7646; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10140.7,2061.83,0]; }; @@ -334,7 +334,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_26 = _this; _this setDir 75.8194; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10165.5,2068.04,0]; }; @@ -346,7 +346,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_27 = _this; _this setDir 75.887; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10182.1,2072.25,0]; }; @@ -358,7 +358,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_28 = _this; _this setDir 75.8704; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; _this setPos [10196.4,2075.86,0]; }; @@ -370,7 +370,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_29 = _this; _this setDir 75.8372; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; _this setPos [10129.5,2058.96,0]; }; @@ -382,7 +382,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_30 = _this; _this setDir 75.8049; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10115.2,2055.35,0]; }; @@ -394,7 +394,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_31 = _this; _this setDir 75.7662; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10101.4,2051.88,0]; }; @@ -406,7 +406,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_32 = _this; _this setDir 75.9223; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10090.5,2049.15,0]; }; @@ -418,7 +418,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_33 = _this; _this setDir 75.8529; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10210.5,2079.41,0]; }; @@ -430,7 +430,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_34 = _this; _this setDir 75.9448; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; _this setPos [10135.9,2065.42,0]; }; @@ -442,7 +442,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_35 = _this; _this setDir 75.9938; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10168.7,2054.86,0]; }; @@ -454,7 +454,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_36 = _this; _this setDir 75.9375; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10154.9,2051.41,0]; }; @@ -466,7 +466,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_37 = _this; _this setDir 75.9703; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10143.9,2048.69,0]; }; @@ -478,7 +478,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_38 = _this; _this setDir 75.8459; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10185.3,2059.04,0]; }; @@ -490,7 +490,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_39 = _this; _this setDir 75.935; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10202,2063.21,0]; }; @@ -502,7 +502,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_40 = _this; _this setDir 75.9678; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10132.9,2045.94,0]; }; @@ -514,7 +514,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_41 = _this; _this setDir 75.9703; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10121.9,2043.18,0]; }; @@ -526,7 +526,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_42 = _this; _this setDir 75.8529; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10137.1,2051.41,0]; }; @@ -538,7 +538,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_43 = _this; _this setDir 75.7936; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10215.8,2066.71,0]; }; @@ -550,7 +550,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_44 = _this; _this setDir 75.935; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10229.6,2070.15,0]; }; @@ -562,7 +562,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_45 = _this; _this setDir 75.9375; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10276.3,2081.89,0]; }; @@ -574,7 +574,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_46 = _this; _this setDir 75.9703; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10265.4,2079.14,0]; }; @@ -586,7 +586,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_47 = _this; _this setDir 75.9678; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10254.4,2076.39,0]; }; @@ -598,7 +598,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_48 = _this; _this setDir 75.9703; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10243.4,2073.63,0]; }; @@ -610,7 +610,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_49 = _this; _this setDir 75.9375; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10320.2,2092.91,0]; }; @@ -622,7 +622,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_50 = _this; _this setDir 75.9703; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10309.2,2090.14,0]; }; @@ -634,7 +634,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_51 = _this; _this setDir 75.9678; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10298.3,2087.39,0]; }; @@ -646,7 +646,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_52 = _this; _this setDir 75.9703; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10287.3,2084.65,0]; }; @@ -658,7 +658,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_53 = _this; _this setDir 255.993; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; _this setPos [10331.5,2095.69,0]; }; @@ -670,7 +670,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_54 = _this; _this setDir 75.9375; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10342.9,2098.59,0]; }; @@ -682,7 +682,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_55 = _this; _this setDir 89.9098; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.19];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.19];}; }; _this setPos [10224.5,1778.98,0]; }; @@ -694,7 +694,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_56 = _this; _this setDir 89.9149; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.19];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.19];}; }; _this setPos [10241.7,1779.02,0]; }; @@ -706,7 +706,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_57 = _this; _this setDir 89.8509; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.19];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.19];}; }; _this setPos [10258.9,1779.04,0]; }; @@ -762,7 +762,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_62 = _this; _this setDir -270.189; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [10254.2,1779.13,0]; }; @@ -774,7 +774,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_63 = _this; _this setDir 185.938; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10207.3,1934.35,0]; }; @@ -786,7 +786,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_64 = _this; _this setDir 185.94; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [10208.5,1945.61,0]; }; @@ -798,7 +798,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_65 = _this; _this setDir 20.7185; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [10831.7,2655.71,0]; }; @@ -810,7 +810,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_66 = _this; _this setDir 20.7185; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [10836,2667.02,0]; }; @@ -822,7 +822,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_67 = _this; _this setDir 20.6669; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [10840.2,2678.31,0]; }; @@ -834,7 +834,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_68 = _this; _this setDir 20.692; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [10844.5,2689.61,0]; }; @@ -846,7 +846,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_69 = _this; _this setDir 20.68; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [10848.8,2700.91,0]; }; @@ -858,7 +858,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_70 = _this; _this setDir 65.7905; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [12671.4,3657.35,0]; }; @@ -870,7 +870,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_71 = _this; _this setDir 65.7771; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [12682.5,3662.32,0]; }; @@ -882,7 +882,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_72 = _this; _this setDir -1.726; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.91]; _this setvectordirandup [[-0.1,4,-0.055],[0,0,1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.91]; _this setvectordirandup [[-0.1,4,-0.055],[0,0,1]];}; }; _this setPos [13365.1,6200.56,0]; }; @@ -894,7 +894,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_73 = _this; _this setDir -1.83542; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.32];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.32];}; }; _this setPos [13366.3,6158.73,0]; }; @@ -906,7 +906,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_74 = _this; _this setDir -1.66878; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13370.2,6024.76,0]; }; @@ -918,7 +918,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_75 = _this; _this setDir -1.61082; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13367.8,6107.19,0]; }; @@ -930,7 +930,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_76 = _this; _this setDir -1.65283; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [13370.6,6010.2,0]; }; @@ -942,7 +942,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_77 = _this; _this setDir -1.72675; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.34];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.34];}; }; _this setPos [13365.5,6185.31,0]; }; @@ -954,7 +954,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_78 = _this; _this setDir -1.72828; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13367.1,6129.8,0]; }; @@ -966,7 +966,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_79 = _this; _this setDir -1.70484; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.31];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.31];}; }; _this setPos [13365.9,6170.78,0]; }; @@ -978,7 +978,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_80 = _this; _this setDir -1.66526; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.34];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.34];}; }; _this setPos [13366.7,6144.05,0]; }; @@ -990,7 +990,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_81 = _this; _this setDir -1.63602; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13367.4,6118.5,0]; }; @@ -1002,7 +1002,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_82 = _this; _this setDir -181.671; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [13371,5997.94,0]; }; @@ -1014,7 +1014,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_83 = _this; _this setDir -1.62039; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13369.7,6041.92,0]; }; @@ -1026,7 +1026,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_84 = _this; _this setDir -1.69969; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13368.8,6073.3,0]; }; @@ -1038,7 +1038,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_85 = _this; _this setDir 178.315; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [13371.3,5985.9,0]; }; @@ -1050,7 +1050,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_86 = _this; _this setDir -1.75524; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13369.2,6059.07,0]; }; @@ -1062,7 +1062,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_87 = _this; _this setDir -1.61497; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13368.1,6095.92,0]; }; @@ -1074,7 +1074,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_88 = _this; _this setDir 3.50865; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13369.8,5891.87,0]; }; @@ -1086,7 +1086,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_89 = _this; _this setDir -1.50273; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13372,5962.98,0]; }; @@ -1098,7 +1098,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_90 = _this; _this setDir 3.43258; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [13368.9,5877.37,0]; }; @@ -1110,7 +1110,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_91 = _this; _this setDir -176.595; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [13368.1,5865.12,0]; }; @@ -1122,7 +1122,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_92 = _this; _this setDir 3.56523; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13370.8,5909.01,0]; }; @@ -1134,7 +1134,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_93 = _this; _this setDir 0.541619; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13372.4,5940.43,0]; }; @@ -1146,7 +1146,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_94 = _this; _this setDir 183.507; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [13367.4,5853.06,0]; }; @@ -1158,7 +1158,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_95 = _this; _this setDir 3.31062; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13371.8,5926.17,0]; }; @@ -1170,7 +1170,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_96 = _this; _this setDir -1.42689; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13372.3,5951.67,0]; }; @@ -1182,7 +1182,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_97 = _this; _this setDir 3.50865; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [13366.7,5841.19,0]; }; @@ -1194,7 +1194,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_98 = _this; _this setDir -176.403; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [13365.9,5828.98,0]; }; @@ -1206,7 +1206,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_99 = _this; _this setDir 183.452; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [13365.2,5816.93,0]; }; @@ -1218,7 +1218,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_100 = _this; _this setDir 3.65769; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13364.5,5805.36,0]; }; @@ -1230,7 +1230,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_101 = _this; _this setDir 3.46276; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13362.4,5771.5,0]; }; @@ -1242,7 +1242,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_102 = _this; _this setDir 3.53349; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13361.6,5757.31,0]; }; @@ -1254,7 +1254,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_103 = _this; _this setDir 3.46518; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13363.8,5794.07,0]; }; @@ -1266,7 +1266,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_104 = _this; _this setDir 3.4403; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13360,5731.86,0]; }; @@ -1278,7 +1278,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_105 = _this; _this setDir 3.46518; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13360.7,5743.12,0]; }; @@ -1290,7 +1290,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_106 = _this; _this setDir 3.46276; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13358.6,5709.3,0]; }; @@ -1302,7 +1302,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_107 = _this; _this setDir 3.50071; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13359.3,5720.58,0]; }; @@ -1314,7 +1314,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_108 = _this; _this setDir 183.417; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [13357.9,5697.53,0]; }; @@ -1326,7 +1326,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_109 = _this; _this setDir 2.9396; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [13357.2,5685.63,0]; }; @@ -1338,7 +1338,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_110 = _this; _this setDir -179.362; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [13356.8,5673.43,0]; }; @@ -1350,7 +1350,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_111 = _this; _this setDir -1.61742; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13368.4,6084.61,0]; }; @@ -1362,7 +1362,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_112 = _this; _this setDir -1.46178; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13371.7,5974.28,0]; }; @@ -1374,7 +1374,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_113 = _this; _this setDir 3.48919; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [13363.1,5782.79,0]; }; @@ -1386,7 +1386,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_114 = _this; _this setDir -17.1187; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21];}; }; _this setPos [13127.1,7142.86,0]; }; @@ -1398,7 +1398,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_115 = _this; _this setDir -17.1947; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [13131.4,7129.02,0]; }; @@ -1410,7 +1410,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_116 = _this; _this setDir -197.223; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [13135,7117.26,0]; }; @@ -1422,7 +1422,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_117 = _this; _this setDir -17.0611; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21];}; }; _this setPos [13122.1,7159.27,0]; }; @@ -1434,7 +1434,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_118 = _this; _this setDir 162.88; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [13138.6,7105.71,0]; }; @@ -1446,7 +1446,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_119 = _this; _this setDir -17.1187; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [13142.1,7094.34,0]; }; @@ -1458,7 +1458,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_120 = _this; _this setDir -197.03; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [13145.7,7082.65,0]; }; @@ -1470,7 +1470,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_121 = _this; _this setDir 162.824; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [13149.2,7071.12,0]; }; @@ -1482,7 +1482,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_122 = _this; _this setDir -16.9696; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21];}; }; _this setPos [13152.6,7060.03,0]; }; @@ -1494,7 +1494,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_123 = _this; _this setDir -17.1621; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21];}; }; _this setPos [13155.9,7049.21,0]; }; @@ -1506,7 +1506,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_124 = _this; _this setDir -17.1381; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21];}; }; _this setPos [13159.3,7038.42,0]; }; @@ -1518,7 +1518,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_125 = _this; _this setDir -17.1601; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21];}; }; _this setPos [13151.5,7110.7,0]; }; @@ -1530,7 +1530,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_126 = _this; _this setDir -17.1737; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [13155.7,7096.79,0]; }; @@ -1542,7 +1542,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_127 = _this; _this setDir -17.1704; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [13159.3,7085.25,0]; }; @@ -1554,7 +1554,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_128 = _this; _this setDir -17.1955; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [13162.9,7073.7,0]; }; @@ -1566,7 +1566,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_129 = _this; _this setDir -17.1439; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [13166.4,7062.17,0]; }; @@ -1578,7 +1578,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_130 = _this; _this setDir -17.1318; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [13248.4,6766.7,0]; }; @@ -1590,7 +1590,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_131 = _this; _this setDir 8.72928; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21];}; }; _this setPos [12908.6,9963.84,0]; }; @@ -1602,7 +1602,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_132 = _this; _this setDir 8.81977; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [12906.9,9952.43,0]; }; @@ -1614,7 +1614,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_133 = _this; _this setDir 19.0526; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [12999,10218,0]; }; @@ -1626,7 +1626,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_134 = _this; _this setDir 19.0979; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.205];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.205];}; }; _this setPos [13022.1,10284.6,0]; }; @@ -1638,7 +1638,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_135 = _this; _this setDir 19.0436; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.205];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.205];}; }; _this setPos [12991.2,10195.5,0]; }; @@ -1650,7 +1650,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_136 = _this; _this setDir 19.1208; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.205];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.205];}; }; _this setPos [13018.4,10273.9,0]; }; @@ -1662,7 +1662,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_137 = _this; _this setDir 19.1883; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.205];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.205];}; }; _this setPos [13025.8,10295.3,0]; }; @@ -1674,7 +1674,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_138 = _this; _this setDir 19.1417; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.205];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.205];}; }; _this setPos [13006.7,10240.4,0]; }; @@ -1686,7 +1686,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_139 = _this; _this setDir 19.0537; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [12987.4,10184.5,0]; }; @@ -1698,7 +1698,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_140 = _this; _this setDir 19.1331; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [13003,10229.4,0]; }; @@ -1710,7 +1710,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_141 = _this; _this setDir 199.046; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [13010.6,10251.4,0]; }; @@ -1722,7 +1722,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_142 = _this; _this setDir 199.109; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [13014.5,10262.8,0]; }; @@ -1734,7 +1734,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_143 = _this; _this setDir 19.1871; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [12995.1,10206.6,0]; }; @@ -1746,7 +1746,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_144 = _this; _this setDir 19.1883; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.205];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.205];}; }; _this setPos [13029.5,10306,0]; }; @@ -1758,7 +1758,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_145 = _this; _this setDir 379.168; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16];}; }; _this setPos [13033.4,10317.1,0]; }; @@ -1770,7 +1770,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_146 = _this; _this setDir 199.036; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.18];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.18];}; }; _this setPos [13114,10507.9,0]; }; @@ -1782,7 +1782,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_147 = _this; _this setDir 199.081; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.205];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.205];}; }; _this setPos [13090.9,10441.3,0]; }; @@ -1794,7 +1794,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_148 = _this; _this setDir 199.2; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.205];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.205];}; }; _this setPos [13121.8,10530.4,0]; }; @@ -1806,7 +1806,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_149 = _this; _this setDir 199.104; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.205];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.205];}; }; _this setPos [13094.6,10452,0]; }; @@ -1818,7 +1818,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_150 = _this; _this setDir 199.011; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.22];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.22];}; }; _this setPos [13087.2,10430.6,0]; }; @@ -1830,7 +1830,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_151 = _this; _this setDir 199.125; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.205];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.205];}; }; _this setPos [13106.2,10485.5,0]; }; @@ -1842,7 +1842,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_152 = _this; _this setDir 199.015; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.18];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.18];}; }; _this setPos [13125.6,10541.4,0]; }; @@ -1854,7 +1854,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_153 = _this; _this setDir 199.117; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.18];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.18];}; }; _this setPos [13110,10496.5,0]; }; @@ -1866,7 +1866,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_154 = _this; _this setDir 379.029; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.18];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.18];}; }; _this setPos [13102.4,10474.5,0]; }; @@ -1878,7 +1878,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_155 = _this; _this setDir 379.092; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.18];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.18];}; }; _this setPos [13098.5,10463.1,0]; }; @@ -1890,7 +1890,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_156 = _this; _this setDir 199.171; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.18];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.18];}; }; _this setPos [13117.9,10519.3,0]; }; @@ -1902,7 +1902,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_157 = _this; _this setDir 198.96; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.22];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.22];}; }; _this setPos [13083.5,10419.9,0]; }; @@ -1914,7 +1914,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_158 = _this; _this setDir 559.152; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.18];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.18];}; }; _this setPos [13079.7,10408.8,0]; }; @@ -1926,7 +1926,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_159 = _this; _this setDir 19.1541; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.18];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.18];}; }; _this setPos [13102.7,10503,0]; }; @@ -1938,7 +1938,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_160 = _this; _this setDir 19.115; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.18];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.18];}; }; _this setPos [13106.6,10514.4,0]; }; @@ -1962,7 +1962,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_162 = _this; _this setDir 40.6864; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21 ];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21 ];}; }; _this setPos [6548.56,2651.34,0]; }; */ @@ -1976,7 +1976,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_163 = _this; _this setDir 40.6281; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16 ];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16 ];}; }; _this setPos [6533.65,2633.95,0]; }; */ @@ -1989,7 +1989,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_164 = _this; _this setDir 40.6412; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16 ];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16 ];}; }; _this setPos [6517.91,2615.62,0]; }; @@ -2001,7 +2001,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_165 = _this; _this setDir 220.639; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16 ];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16 ];}; }; _this setPos [6525.69,2624.66,0]; }; @@ -2014,7 +2014,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_166 = _this; _this setDir 40.6699; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21 ];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21 ];}; }; _this setPos [6541.2,2642.78,0]; }; */ @@ -2027,7 +2027,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_167 = _this; _this setDir 40.7534; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2 ];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2 ];}; }; _this setPos [6508.3,2604.47,0]; }; @@ -2040,7 +2040,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_168 = _this; _this setDir 40.72; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21 ];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21 ];}; }; _this setPos [6546.45,2627.71,0]; }; */ @@ -2053,7 +2053,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_169 = _this; _this setDir 40.5307; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21 ];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21 ];}; }; _this setPos [6539.11,2619.12,0]; }; @@ -2066,7 +2066,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_170 = _this; _this setDir 40.6135; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21 ];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21 ];}; }; _this setPos [6555.74,2638.48,0]; }; */ @@ -2080,7 +2080,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_171 = _this; _this setDir 40.7265; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21 ];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21 ];}; }; _this setPos [6566.93,2651.51,0]; }; */ @@ -2093,7 +2093,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_172 = _this; _this setDir 40.7015; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21 ];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.21 ];}; }; _this setPos [6533.01,2587.37,0]; }; @@ -2116,7 +2116,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_174 = _this; _this setDir 40.6412; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16 ];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16 ];}; }; _this setPos [6498.84,2593.43,0]; }; @@ -2128,7 +2128,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_175 = _this; _this setDir 40.6412; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16 ];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16 ];}; }; _this setPos [6490.97,2584.29,0]; }; @@ -2140,7 +2140,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_176 = _this; _this setDir -39.1664; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2 ];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2 ];}; }; _this setPos [6975.78,2709.83,0]; }; @@ -2163,7 +2163,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_178 = _this; _this setDir 320.932; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [6982.92,2701.08,0]; }; @@ -2175,7 +2175,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_179 = _this; _this setDir -38.9921; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2 ];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2 ];}; }; _this setPos [6968.65,2718.6,0]; }; @@ -2187,7 +2187,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_180 = _this; _this setDir -39.0062; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.144];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.144];}; }; _this setPos [6977.53,2715.06,0]; }; @@ -2199,7 +2199,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_181 = _this; _this setDir -39.1552; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.144];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.144];}; }; _this setPos [6992.76,2696.31,0]; }; @@ -2211,7 +2211,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_182 = _this; _this setDir -39.2022; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.144];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.144];}; }; _this setPos [6985.15,2705.68,0]; }; @@ -2223,7 +2223,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_183 = _this; _this setDir -39.1852; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.147];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.147];}; }; _this setPos [6969.91,2724.43,0]; }; @@ -2235,7 +2235,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_184 = _this; _this setDir 52.0169; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.173];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.173];}; }; _this setPos [6940.98,2395.26,0]; }; @@ -2247,7 +2247,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_185 = _this; _this setDir 52.0778; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.173];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.173];}; }; _this setPos [6954.5,2405.83,0]; }; @@ -2259,7 +2259,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_186 = _this; _this setDir -127.844; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [6950.61,2402.79,0]; }; @@ -2271,7 +2271,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_187 = _this; _this setDir 52.2078; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [6955.99,2406.99,0]; }; @@ -2283,7 +2283,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_188 = _this; _this setDir 232.525; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [6959.6,2409.72,0]; }; @@ -2295,7 +2295,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_189 = _this; _this setDir 52.0169; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.173];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.173];}; }; _this setPos [6927.51,2384.74,0]; }; @@ -2307,7 +2307,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_190 = _this; _this setDir 51.9726; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [6943.61,2397.3,0]; }; @@ -2319,7 +2319,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_191 = _this; _this setDir 52.2078; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [6938.71,2393.39,0]; }; @@ -2342,7 +2342,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_193 = _this; _this setDir 40.4888; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16 ];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.16 ];}; }; _this setPos [6531.57,2610.31,0]; }; @@ -2354,7 +2354,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_194 = _this; _this setDir 232.087; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.147];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.147];}; }; _this setPos [6939.54,2388.32,0]; }; @@ -2366,7 +2366,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_195 = _this; _this setDir 17.7007; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.155];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.155];}; }; _this setPos [3623.7,2171.53,0]; }; @@ -2378,7 +2378,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_196 = _this; _this setDir 17.7007; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.155];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.155];}; }; _this setPos [3627.4,2183.16,0]; }; @@ -2390,7 +2390,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_197 = _this; _this setDir 17.7007; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.155];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.155];}; }; _this setPos [3631.05,2194.64,0]; }; @@ -2402,7 +2402,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_198 = _this; _this setDir 17.7007; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.155];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.155];}; }; _this setPos [3634.73,2206.28,0]; }; @@ -2414,7 +2414,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_199 = _this; _this setDir 110.911; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 1.3 ]; _this setvectordirandup [[-1,-1,0],[-5,0,-1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 1.3 ]; _this setvectordirandup [[-1,-1,0],[-5,0,-1]];}; }; _this setPos [7102.12,3174.18,0]; }; @@ -2426,7 +2426,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_200 = _this; _this setDir 185; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 1.2 ]; _this setvectordirandup [[0,0.1,0],[-100,0,0]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 1.2 ]; _this setvectordirandup [[0,0.1,0],[-100,0,0]];}; }; _this setPos [7107.71,3170.25,0]; }; @@ -2438,7 +2438,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_201 = _this; _this setDir 1.35996; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.6 ]; _this setvectordirandup [[-0.8,-0.9,0.3],[0,0.9,0.9]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.6 ]; _this setvectordirandup [[-0.8,-0.9,0.3],[0,0.9,0.9]];}; }; _this setPos [7110.45,3178.59,0]; }; @@ -2450,7 +2450,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_202 = _this; _this setDir 267.443; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; _this setPos [7157.28,3185.96,0]; }; @@ -2462,7 +2462,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_203 = _this; _this setDir -151.81; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.3];}; }; _this setPos [7132.42,3165.21,0]; }; @@ -2474,7 +2474,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_204 = _this; _this setDir -94.937; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; _this setPos [7246.22,3214.1,0]; }; @@ -2486,7 +2486,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_205 = _this; _this setDir -103.959; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.14];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.14];}; }; _this setPos [7347.18,3252.48,0]; }; @@ -2498,7 +2498,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_206 = _this; _this setDir 76.1935; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.45];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.45];}; }; _this setPos [7361.46,3256.02,0]; }; @@ -2510,7 +2510,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_207 = _this; _this setDir 76.2594; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.395]; _this setvectordirandup [[1,0.24,0.023],[0,0,0.1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.395]; _this setvectordirandup [[1,0.24,0.023],[0,0,0.1]];}; }; _this setPos [7391.89,3263.52,0]; }; @@ -2522,7 +2522,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_208 = _this; _this setDir 79.0538; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3];}; }; _this setPos [7426.81,3271.69,0]; }; @@ -2534,7 +2534,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_209 = _this; _this setDir 86.4748; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [7565.06,3286.06,0]; }; @@ -2546,7 +2546,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_210 = _this; _this setDir 86.3477; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [7533.75,3284.17,0]; }; @@ -2558,7 +2558,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_211 = _this; _this setDir 71.8477; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.85];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.85];}; }; _this setPos [7266.51,3220.54,0]; }; @@ -2570,7 +2570,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_212 = _this; _this setDir 66.2679; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.72]; _this setvectordirandup [[-1,-0.444,0.016],[0,0,0.1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.72]; _this setvectordirandup [[-1,-0.444,0.016],[0,0,0.1]];}; }; _this setPos [7300.95,3235.73,0]; }; @@ -2582,7 +2582,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_213 = _this; _this setDir 69.3402; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [7324.47,3245.84,0]; }; @@ -2594,7 +2594,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_214 = _this; _this setDir 86.5142; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [7621.82,3289.54,0]; }; @@ -2606,7 +2606,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_215 = _this; _this setDir 86.332; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [7590.48,3287.64,0]; }; @@ -2618,7 +2618,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_216 = _this; _this setDir 96.9888; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 1]; _this setvectordirandup [[-1,0,0],[5,-5,-1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 1]; _this setvectordirandup [[-1,0,0],[5,-5,-1]];}; }; _this setPos [7123.26,3159.89,0]; }; @@ -2630,7 +2630,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_217 = _this; _this setDir 40.9211; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1]; _this setvectordirandup [[-0.9,-0.9,0.02],[0,0.005,0.1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1]; _this setvectordirandup [[-0.9,-0.9,0.02],[0,0.005,0.1]];}; }; _this setPos [7234.76,3208.31,0]; }; @@ -2642,7 +2642,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_218 = _this; _this setDir 66.2006; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.3]; _this setvectordirandup [[1,0.44,-0.015],[0,0,0.1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.3]; _this setvectordirandup [[1,0.44,-0.015],[0,0,0.1]];}; }; _this setPos [7314,3241.5,0]; }; @@ -2654,7 +2654,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_219 = _this; _this setDir 114.526; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 1.2 ]; _this setvectordirandup [[-5.8,-0.9,0.2],[0,-0.9,0.2]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 1.2 ]; _this setvectordirandup [[-5.8,-0.9,0.2],[0,-0.9,0.2]];}; }; _this setPos [7116.92,3184.8,0]; }; @@ -2677,7 +2677,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_221 = _this; _this setDir -96.6494; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; _this setPos [7223.67,3201.53,0]; }; @@ -2689,7 +2689,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_222 = _this; _this setDir 76.1952; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.9]; _this setvectordirandup [[1,0.24,0.023],[0,0,0.1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.9]; _this setvectordirandup [[1,0.24,0.023],[0,0,0.1]];}; }; _this setPos [7403.32,3266.33,0]; }; @@ -2701,7 +2701,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_223 = _this; _this setDir 86.4514; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [7547.91,3285.01,0]; }; @@ -2713,7 +2713,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_224 = _this; _this setDir -93.5671; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [7579.27,3286.91,0]; }; @@ -2725,7 +2725,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_225 = _this; _this setDir 256.565; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3]; _this setvectordirandup [[-1,-0.234,-0.003],[0,0,0.1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.3]; _this setvectordirandup [[-1,-0.234,-0.003],[0,0,0.1]];}; }; _this setPos [7414.9,3269.16,0]; }; @@ -2737,7 +2737,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_226 = _this; _this setDir 76.1244; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.2];}; }; _this setPos [7378.12,3260.13,0]; }; @@ -2749,7 +2749,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_227 = _this; _this setDir 81.1056; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [7438.25,3273.66,0]; }; @@ -2761,7 +2761,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_228 = _this; _this setDir 13.7257; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; _this setPos [7169.23,3180.84,0]; }; @@ -2773,7 +2773,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_229 = _this; _this setDir 61.8182; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; _this setPos [7127.4,3182.17,0]; }; @@ -2785,7 +2785,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_230 = _this; _this setDir 30; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.4]; _this setvectordirandup [[0.1,0.04,0],[0,0.1,0.5]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.4]; _this setvectordirandup [[0.1,0.04,0],[0,0.1,0.5]];}; }; _this setPos [7256.01,3216.84,0]; }; @@ -2797,7 +2797,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_231 = _this; _this setDir 62.2029; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.9];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.9];}; }; _this setPos [7276.77,3224.81,0]; }; @@ -2809,7 +2809,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_232 = _this; _this setDir 69.6055; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.93]; _this setvectordirandup [[1,0.44,0.016],[0,0,0.1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.93]; _this setvectordirandup [[1,0.44,0.016],[0,0,0.1]];}; }; _this setPos [7287.65,3229.83,0]; }; @@ -2821,7 +2821,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_233 = _this; _this setDir 81.0941; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [7449.4,3275.38,0]; }; @@ -2833,7 +2833,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_234 = _this; _this setDir 81.4058; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [7460.57,3277.09,0]; }; @@ -2845,7 +2845,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_235 = _this; _this setDir 81.4323; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [7471.73,3278.79,0]; }; @@ -2857,7 +2857,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_236 = _this; _this setDir 82.6699; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [7482.89,3280.38,0]; }; @@ -2869,7 +2869,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_237 = _this; _this setDir 84.9623; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [7494.1,3281.6,0]; }; @@ -2881,7 +2881,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_238 = _this; _this setDir 86.5176; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [7522.48,3283.45,0]; }; @@ -2893,7 +2893,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_239 = _this; _this setDir 86.4458; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.18];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.18];}; }; _this setPos [7701.24,3294.42,0]; }; @@ -2905,7 +2905,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_240 = _this; _this setDir 86.5497; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.24]; _this setvectordirandup [[1,0.06,-0.001],[0,0,0.1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.24]; _this setvectordirandup [[1,0.06,-0.001],[0,0,0.1]];}; }; _this setPos [7669.9,3292.46,0]; }; @@ -2917,7 +2917,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_241 = _this; _this setDir 86.4875; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.19];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.19];}; }; _this setPos [7726.66,3295.97,0]; }; @@ -2929,7 +2929,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_242 = _this; _this setDir 86.4589; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.2];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.2];}; }; _this setPos [7684.1,3293.35,0]; }; @@ -2941,7 +2941,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_243 = _this; _this setDir -93.4031; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.18];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.18];}; }; _this setPos [7715.44,3295.24,0]; }; @@ -2953,7 +2953,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_244 = _this; _this setDir 86.6897; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [7636.04,3290.42,0]; }; @@ -2965,7 +2965,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_245 = _this; _this setDir 86.4755; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [7647.33,3291.12,0]; }; @@ -2977,7 +2977,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_246 = _this; _this setDir 86.4554; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.29]; _this setvectordirandup [[1,0.064,-0.001],[0,0,0.1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.29]; _this setvectordirandup [[1,0.064,-0.001],[0,0,0.1]];}; }; _this setPos [7658.61,3291.72,0]; }; @@ -2989,7 +2989,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_247 = _this; _this setDir -132.027; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.3];}; }; _this setPos [7121.97,3181.71,0]; }; @@ -3001,7 +3001,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_248 = _this; _this setDir -50.3757; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1]; _this setvectordirandup [[-1,0.8,0],[-0.1,0,1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1]; _this setvectordirandup [[-1,0.8,0],[-0.1,0,1]];}; }; _this setPos [7160.86,3179.13,0]; }; @@ -3013,7 +3013,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_249 = _this; _this setDir 71.8785; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.3];}; }; _this setPos [7141.34,3172.62,0]; }; @@ -3025,7 +3025,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_250 = _this; _this setDir 37.7236; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.3];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.3];}; }; _this setPos [7151.17,3178.25,0]; }; @@ -3037,7 +3037,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_251 = _this; _this setDir 18.081; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; _this setPos [7190.67,3185.98,0]; }; @@ -3049,7 +3049,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_252 = _this; _this setDir 56.5019; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; _this setPos [7112.81,3160.71,0]; }; @@ -3061,7 +3061,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_253 = _this; _this setDir 137.568; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.6 ]; _this setvectordirandup [[-1.8,3,0],[0,-0.1,0.1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.6 ]; _this setvectordirandup [[-1.8,3,0],[0,-0.1,0.1]];}; }; _this setPos [7116.03,3166.55,0]; }; @@ -3073,7 +3073,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_254 = _this; _this setDir 29.0014; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.6 ]; _this setvectordirandup [[0.1,-0.9,0.1],[0,-5.2,0.1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.6 ]; _this setvectordirandup [[0.1,-0.9,0.1],[0,-5.2,0.1]];}; }; _this setPos [7110.4,3169.71,0]; }; @@ -3085,7 +3085,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_255 = _this; _this setDir 138.884; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.3 ]; _this setvectordirandup [[0.5,0.1,0],[100,0,0]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.3 ]; _this setvectordirandup [[0.5,0.1,0],[100,0,0]];}; }; _this setPos [7106,3162.41,0]; }; @@ -3108,7 +3108,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_257 = _this; _this setDir 94.6955; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; _this setPos [7173.86,3187.55,0]; }; @@ -3120,7 +3120,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_258 = _this; _this setDir 80.1429; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; _this setPos [7198.27,3191.93,0]; }; @@ -3132,7 +3132,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_259 = _this; _this setDir 130.869; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; _this setPos [7183.31,3183.96,0]; }; @@ -3144,7 +3144,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_260 = _this; _this setDir 86.4346; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [7508.28,3282.56,0]; }; @@ -3156,7 +3156,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_261 = _this; _this setDir 86.742; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.35];}; }; _this setPos [7604.7,3288.48,0]; }; @@ -3168,7 +3168,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_262 = _this; _this setDir 86.4998; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.208];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.208];}; }; _this setPos [7740.88,3296.84,0]; }; @@ -3180,7 +3180,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_263 = _this; _this setDir 87.9836; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.222];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.222];}; }; _this setPos [7758.04,3297.7,0]; }; @@ -3192,7 +3192,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_264 = _this; _this setDir 91.2598; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.225];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.225];}; }; _this setPos [7775.25,3297.81,0]; }; @@ -3204,7 +3204,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_265 = _this; _this setDir 91.6922; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.205];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 1.205];}; }; _this setPos [7792.42,3297.37,0]; }; @@ -3216,7 +3216,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_266 = _this; _this setDir -105.878; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.15];}; }; _this setPos [7335.53,3249.47,0]; }; @@ -3228,7 +3228,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_267 = _this; _this setDir -272.392; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.5];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.5];}; }; _this setPos [7259.51,3214.84,0]; }; @@ -3262,7 +3262,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_270 = _this; _this setDir 13.7257; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.6 ]; _this setvectordirandup [[0.3,-5.9,0.3],[-0.1,0.9,0.6]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.6 ]; _this setvectordirandup [[0.3,-5.9,0.3],[-0.1,0.9,0.6]];}; }; _this setPos [7118.34,3172.56,0]; }; @@ -3274,7 +3274,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_271 = _this; _this setDir 117.366; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.3]; _this setvectordirandup [[1,-0.3,0],[0,-0.15,0.1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.3]; _this setvectordirandup [[1,-0.3,0],[0,-0.15,0.1]];}; }; _this setPos [7123.31,3163.96,0]; }; @@ -3286,7 +3286,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_272 = _this; _this setDir -130.992; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; _this setPos [7123.23,3169.97,0]; }; @@ -3298,7 +3298,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_273 = _this; _this setDir -50.3435; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.6 ]; _this setvectordirandup [[0.1,-5.9,0.3],[-0.5,0.9,0.6]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.6 ]; _this setvectordirandup [[0.1,-5.9,0.3],[-0.5,0.9,0.6]];}; }; _this setPos [7116.3,3177.32,0]; }; @@ -3310,7 +3310,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_274 = _this; _this setDir 70.3041; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; _this setPos [7123.95,3175.53,0]; }; @@ -3322,7 +3322,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_275 = _this; _this setDir -169.665; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1]; _this setvectordirandup [[0,-1,-0.1],[0,-0.05,1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1]; _this setvectordirandup [[0,-1,-0.1],[0,-0.05,1]];}; }; _this setPos [7128.32,3168.8,0]; }; @@ -3334,7 +3334,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_276 = _this; _this setDir -69.0689; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; _this setPos [7129.83,3177.81,0]; }; @@ -3346,7 +3346,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_277 = _this; _this setDir -123.337; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; _this setPos [7134.06,3173.39,0]; }; @@ -3358,7 +3358,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_278 = _this; _this setDir -251.253; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1];}; }; _this setPos [7136.33,3180.78,0]; }; @@ -3370,7 +3370,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_279 = _this; _this setDir -92.7887; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.35]; _this setvectordirandup [[1,-0.2,0.25],[-5,2,1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.35]; _this setvectordirandup [[1,-0.2,0.25],[-5,2,1]];}; }; _this setPos [7109.97,3181.77,0]; }; @@ -3382,7 +3382,7 @@ _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_280 = _this; _this setDir 52.2078; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.31]; _this setvectordirandup [[-1,-0.8,-0.3],[0.1,0,1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)+ 0.31]; _this setvectordirandup [[-1,-0.8,-0.3],[0.1,0,1]];}; }; _this setPos [7162.27,3173.02,0]; }; @@ -3393,7 +3393,7 @@ if (true) then _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_281 = _this; - _this spawn { uisleep 1;if (isServer) then {_this setvectordirandup [[-0.5,-1,-0.15],[0,0,1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setvectordirandup [[-0.5,-1,-0.15],[0,0,1]];}; }; _this setPos [7103.13,3168.99,0]; }; @@ -3404,7 +3404,7 @@ if (true) then _this setVariable ["", true]; // prevent network SV by loot/zeds spawner _vehicle_282 = _this; - _this spawn { uisleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1]; _this setvectordirandup [[1,-1,0],[-15,0,-1]];}; }; + _this spawn { uiSleep 1;if (isServer) then {_this setpos [(getpos _this select 0), (getpos _this select 1), (getpos _this select 2)- 0.1]; _this setvectordirandup [[1,-1,0],[-15,0,-1]];}; }; _this setPos [7156.41,3177.2,0]; }; processInitCommands; diff --git a/SQF/dayz_code/system/scheduler/sched_medical.sqf b/SQF/dayz_code/system/scheduler/sched_medical.sqf index b6c414753..7b1e6ed40 100644 --- a/SQF/dayz_code/system/scheduler/sched_medical.sqf +++ b/SQF/dayz_code/system/scheduler/sched_medical.sqf @@ -124,8 +124,6 @@ sched_medical_effects = { sched_medical_effectsSlow = { // every 10 seconds: diziness using slow shakecam, to handle pain and lack of water HIDE_FSM_VARS - - r_player_inpain = true; if ((r_player_inpain or dayz_thirst >= SleepWater) and !r_player_unconscious and (1 > random 9) and (0 == player getVariable["startcombattimer",0])) then { _blurTask = [] spawn { diff --git a/SQF/dayz_code/system/trap_monitor.fsm b/SQF/dayz_code/system/trap_monitor.fsm deleted file mode 100644 index 1958179cf..000000000 --- a/SQF/dayz_code/system/trap_monitor.fsm +++ /dev/null @@ -1,162 +0,0 @@ -/*%FSM*/ -/*%FSM*/ -/* -item0[] = {"init",0,250,-450.000000,-200.000000,-350.000000,-150.000000,0.000000,"init"}; -item1[] = {"Open",2,250,-125.000000,25.000000,-25.000000,75.000000,0.000000,"Open"}; -item2[] = {"nearby",4,4314,-200.000000,-50.000000,-100.000000,0.000000,0.000000,"nearby"}; -item3[] = {"wait",2,250,-325.000000,-50.000000,-225.000000,0.000000,0.000000,"wait"}; -item4[] = {"local",4,218,-325.000000,-125.000000,-225.000000,-75.000000,2.000000,"local"}; -item5[] = {"opened",4,218,-325.000000,25.000000,-225.000000,75.000000,0.000000,"opened"}; -item6[] = {"server",4,218,-450.000000,-125.000000,-350.000000,-75.000000,1.000000,"server"}; -item7[] = {"true",8,218,-575.000000,-125.000000,-475.000000,-75.000000,0.000000,"true"}; -item8[] = {"end",1,250,-450.000000,-50.000000,-350.000000,0.000000,0.000000,"end"}; -item9[] = {"closed",4,218,-200.000000,-125.000000,-100.000000,-75.000000,0.000000,"closed"}; -item10[] = {"",7,210,-79.000000,-29.000000,-71.000000,-21.000000,0.000000,""}; -item11[] = {"",7,210,-79.000000,-104.000000,-71.000000,-96.000000,0.000000,""}; -link0[] = {0,4}; -link1[] = {0,6}; -link2[] = {0,7}; -link3[] = {1,10}; -link4[] = {2,3}; -link5[] = {3,5}; -link6[] = {4,3}; -link7[] = {5,1}; -link8[] = {6,8}; -link9[] = {7,8}; -link10[] = {9,3}; -link11[] = {10,2}; -link12[] = {10,11}; -link13[] = {11,9}; -globals[] = {25.000000,1,0,0,0,640,480,1,97,6316128,1,-619.928406,50.669247,261.518799,-371.823456,954,1030,1}; -window[] = {2,-1,-1,-1,-1,1150,208,1179,208,3,972}; -*//*%FSM*/ -class FSM -{ - fsmName = "DayZ Trap"; - class States - { - /*%FSM*/ - class init - { - name = "init"; - init = /*%FSM*/"_trap = _this select 0;" \n - ""/*%FSM*/; - precondition = /*%FSM*/""/*%FSM*/; - class Links - { - /*%FSM*/ - class local - { - priority = 2.000000; - to="wait"; - precondition = /*%FSM*/""/*%FSM*/; - condition=/*%FSM*/"local _trap"/*%FSM*/; - action=/*%FSM*/"_pos = getPosATL _trap;"/*%FSM*/; - }; - /*%FSM*/ - /*%FSM*/ - class server - { - priority = 1.000000; - to="end"; - precondition = /*%FSM*/""/*%FSM*/; - condition=/*%FSM*/"isServer"/*%FSM*/; - action=/*%FSM*/"[_trap] call eh_localCleanup;"/*%FSM*/; - }; - /*%FSM*/ - /*%FSM*/ - class true - { - priority = 0.000000; - to="end"; - precondition = /*%FSM*/""/*%FSM*/; - condition=/*%FSM*/""/*%FSM*/; - action=/*%FSM*/""/*%FSM*/; - }; - /*%FSM*/ - }; - }; - /*%FSM*/ - /*%FSM*/ - class Open - { - name = "Open"; - init = /*%FSM*/""/*%FSM*/; - precondition = /*%FSM*/""/*%FSM*/; - class Links - { - /*%FSM*/ - class closed - { - priority = 0.000000; - to="wait"; - precondition = /*%FSM*/""/*%FSM*/; - condition=/*%FSM*/"((_trap animationPhase ""LeftShutter"") > 0)"/*%FSM*/; - action=/*%FSM*/"[nil,_trap,rSAY,[""trap_bear_0"",60]] call RE;"/*%FSM*/; - }; - /*%FSM*/ - /*%FSM*/ - class nearby - { - priority = 0.000000; - to="wait"; - precondition = /*%FSM*/""/*%FSM*/; - condition=/*%FSM*/"count (_pos nearEntities 0.5) > 0"/*%FSM*/; - action=/*%FSM*/"_ent = (_pos nearEntities 0.5) select 0;" \n - "" \n - "//Sound/Animate" \n - "[nil,_trap,rSAY,[""trap_bear_0"",60]] call RE;" \n - "_trap animate [""LeftShutter"",1];" \n - "_trap animate [""RightShutter"",1];" \n - "" \n - "if (_ent isKindOf ""Animal"") then {" \n - " _ent setDamage 1;" \n - "} else {" \n - " _ent setHit [""legs"",1];" \n - " _ent setVariable [""hit_legs"",2,true];" \n - "};"/*%FSM*/; - }; - /*%FSM*/ - }; - }; - /*%FSM*/ - /*%FSM*/ - class wait - { - name = "wait"; - init = /*%FSM*/""/*%FSM*/; - precondition = /*%FSM*/""/*%FSM*/; - class Links - { - /*%FSM*/ - class opened - { - priority = 0.000000; - to="Open"; - precondition = /*%FSM*/""/*%FSM*/; - condition=/*%FSM*/"!((_trap animationPhase ""LeftShutter"") > 0)"/*%FSM*/; - action=/*%FSM*/""/*%FSM*/; - }; - /*%FSM*/ - }; - }; - /*%FSM*/ - /*%FSM*/ - class end - { - name = "end"; - init = /*%FSM*/""/*%FSM*/; - precondition = /*%FSM*/""/*%FSM*/; - class Links - { - }; - }; - /*%FSM*/ - }; - initState="init"; - finalStates[] = - { - "end" - }; -}; -/*%FSM*/ \ No newline at end of file diff --git a/SQF/dayz_code/util/Array.hpp b/SQF/dayz_code/util/Array.hpp index c4ac55a5f..5bf6276b2 100644 --- a/SQF/dayz_code/util/Array.hpp +++ b/SQF/dayz_code/util/Array.hpp @@ -16,6 +16,9 @@ Author: Foxy #define Array_GetSet(array, index, value) ([array, index, value] call dz_fn_array_getSet) #define Array_GetSet_Fast(array, index, value) ([(array) select (index), (array) set [index, value]] select 0) +#define Array_PushBack(array, element) ([array, element] call dz_fn_array_pushBack) +#define Array_PushBack_Fast(array, element) Array_Set(array, count (array), element) + //Returns true if any of the array elements matches the specified predicate #define Array_Any(arr, predicate) ([arr, predicate] call dz_fn_array_any) diff --git a/SQF/dayz_code/util/Player.hpp b/SQF/dayz_code/util/Player.hpp index 67f475db2..5a976bd37 100644 --- a/SQF/dayz_code/util/Player.hpp +++ b/SQF/dayz_code/util/Player.hpp @@ -35,9 +35,21 @@ Return value indicates if and where the item was placed. */ #define Player_AddItem_RESULT_GROUND 2 #define Player_AddItem_RESULT_VEHICLE 3 +/* Attempts to the specified item from the player inventory. +Return value indicates whether the item was actually removed. */ +#define Player_RemoveWeapon(class) ((class) call dz_fn_player_removeWeapon) +#define Player_RemoveWeapon_Fast(class) ([player hasWeapon _this, player removeWeapon _this] select 0) +#define Player_RemoveMagazine(class) ((class) call dz_fn_player_removeMagazine) +#define Player_RemoveMagazine_Fast(class) ([_this in magazines player, player removeMagazine _this] select 0) + /* Adds the specifed item on the ground at the player's feet. The weaponholder containing the item is returned. Returns null if the function fails.*/ #define Player_DropWeapon(class) ([0, class] call dz_fn_player_dropItem) #define Player_DropMagazine(class) ([1, class] call dz_fn_player_dropItem) + +#define Player_GetStance_STAND 1 +#define Player_GetStance_KNEEL 2 +#define Player_GetStance_PRONE 3 +#define Player_GetStance() (1 + floor ((((toArray animationState player) select 5) - 100) / 5)) #endif \ No newline at end of file diff --git a/SQF/dayz_code/util/array.sqf b/SQF/dayz_code/util/array.sqf index ae746391e..0430c3898 100644 --- a/SQF/dayz_code/util/array.sqf +++ b/SQF/dayz_code/util/array.sqf @@ -1,5 +1,10 @@ #include "Array.hpp" +dz_fn_array_pushBack = +{ + Array_PushBack_Fast(_this select 0, _this select 1) +}; + //Returns true if the given predicate evaluates to true for any element in the array dz_fn_array_any = { diff --git a/SQF/dayz_code/util/player.sqf b/SQF/dayz_code/util/player.sqf index 8e71b53f5..664ec3b6f 100644 --- a/SQF/dayz_code/util/player.sqf +++ b/SQF/dayz_code/util/player.sqf @@ -131,10 +131,10 @@ dz_fn_player_dropItem = _wh = nil; - if (count _near == 0) then - { _wh = createVehicle ["WeaponHolder", _pos, [], 0, "CAN_COLLIDE"]; } - else + if (count _near > 0) then { _wh = _near select 0; }; + else + { _wh = createVehicle ["WeaponHolder", _pos, [], 0, "CAN_COLLIDE"]; } if (_this select 0 == 0) then { _wh addWeaponCargoGlobal [_this select 1, 1]; } @@ -148,4 +148,14 @@ dz_fn_player_dropItem = #undef DROP_ITEM_WEAPON_HOLDER_SEARCH_RADIUS #undef DROP_ITEM_WEAPON_HOLDER_PLAYER_OFFSET +}; + +dz_fn_player_removeWeapon = +{ + Player_RemoveWeapon_Fast(_this) +}; + +dz_fn_player_removeMagazine = +{ + Player_RemoveMagazine_Fast(_this) }; \ No newline at end of file diff --git a/SQF/dayz_epoch_b/stringtable.xml b/SQF/dayz_epoch_b/stringtable.xml index 9560a6847..c43794f75 100644 --- a/SQF/dayz_epoch_b/stringtable.xml +++ b/SQF/dayz_epoch_b/stringtable.xml @@ -165,15 +165,6 @@ Ce kit inclut tous les outils nécessaires à fondre, modeler et découper des clés. Sada obsahující nástroje potřebné k vytvoření klíčů. - - Sledgehammer - Vorschlaghammer - Кувалда - Almádena - Voorhamer - Masse - Palice - A tool with a large, flat head attached to a handle. The head is typically made of metal. The sledgehammer can apply more force than other hammers. Ein Vorschlaghammer ist ein aus einem Hammerkopf (typischerweise aus geschmiedetem Stahl) und einem Stiel bestehendes Handwerkzeug. Der Vorschlaghammer kann mit höheren Schlagkräften als andere Hämmer genutzt werden.