Update infectious waterholes

Vanilla commit:

0dadb0897c
This commit is contained in:
ebaydayz
2016-11-21 18:39:50 -05:00
parent 6853263f3d
commit d7ecf29744
21 changed files with 350 additions and 1989 deletions

View File

@@ -1,106 +1,18 @@
_vehicle_375 = objNull;
if (true) then
{
_this = "UAZWreck" createVehicleLocal [5802.0796, 5216.9868, -0.1246307];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_375 = _this;
_this setDir 58.098339;
_this setPos [5802.0796, 5216.9868, -0.1246307];
};
_vehicle_378 = objNull;
if (true) then
{
_this = "UralWreck" createVehicleLocal [5798.4321, 5161.209, 4.5776367e-005];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_378 = _this;
_this setDir -58.649803;
_this setPos [5798.4321, 5161.209, 4.5776367e-005];
};
_vehicle_381 = objNull;
if (true) then
{
_this = "Body2" createVehicleLocal [5796.3213, 5168.3052, -0.00012207031];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_381 = _this;
_this setDir -102.43096;
_this setPos [5796.3213, 5168.3052, -0.00012207031];
};
_vehicle_383 = objNull;
if (true) then
{
_this = "Body2" createVehicleLocal [5794.877, 5157.9111, -0.00021362305];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_383 = _this;
_this setDir -154.39388;
_this setPos [5794.877, 5157.9111, -0.00021362305];
};
_vehicle_385 = objNull;
if (true) then
{
_this = "Body2" createVehicleLocal [5792.832, 5163.8003, -4.5776367e-005];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_385 = _this;
_this setDir -97.141403;
_this setPos [5792.832, 5163.8003, -4.5776367e-005];
};
_vehicle_387 = objNull;
if (true) then
{
_this = "Body2" createVehicleLocal [5802.4307, 5213.1123, -0.00016784668];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_387 = _this;
_this setDir -99.565521;
_this setPos [5802.4307, 5213.1123, -0.00016784668];
};
_vehicle_389 = objNull;
if (true) then
{
_this = "Body2" createVehicleLocal [5800.0649, 5220.5977, -3.0517578e-005];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_389 = _this;
_this setDir -99.565521;
_this setPos [5800.0649, 5220.5977, -3.0517578e-005];
};
_vehicle_392 = objNull;
if (true) then
{
_this = "Body1" createVehicleLocal [5804.439, 5215.0063, -0.0001373291];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_392 = _this;
_this setPos [5804.439, 5215.0063, -0.0001373291];
};
_vehicle_394 = objNull;
if (true) then
{
_this = "Body1" createVehicleLocal [5799.7075, 5164.0625, 0];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_394 = _this;
_this setPos [5799.7075, 5164.0625, 0];
};
_vehicle_396 = objNull;
if (true) then
{
_this = "Body1" createVehicleLocal [5795.9951, 5165.9434, 1.5258789e-005];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_396 = _this;
_this setPos [5795.9951, 5165.9434, 1.5258789e-005];
};
[
["UAZWreck",[5802.0796,5216.9868,-0.1246307],58.098339],
["UralWreck",[5798.4321,5161.209,4.5776367e-005],-58.649803],
["Body2",[5796.3213,5168.3052,-0.00012207031],-102.43096],
["Body2",[5794.877,5157.9111,-0.00021362305],-154.39388],
["Body2",[5792.832,5163.8003,-4.5776367e-005],-97.141403],
["Body2",[5802.4307,5213.1123,-0.00016784668],-99.565521],
["Body2",[5800.0649,5220.5977,-3.0517578e-005],-99.565521],
["Body1",[5804.439,5215.0063,-0.0001373291],0],
["Body1",[5799.7075,5164.0625,0],0],
["Body1",[5795.9951,5165.9434,1.5258789e-005],0]
] call {
private ["_object"];
_object = (_x select 0) createVehicleLocal [0,0,0];
_object setVariable ["", true];
_object setDir (_x select 2);
_object setPos (_x select 1);
} count _this;