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,51 +1,13 @@
_vehicle_259 = objNull;
if (true) then
{
_this = "Body1" createVehicleLocal [9221.8047, 4960.5381, 0];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_259 = _this;
_this setPos [9221.8047, 4960.5381, 0];
};
_vehicle_261 = objNull;
if (true) then
{
_this = "Body1" createVehicleLocal [9215.4082, 4959.6289, -2.2888184e-005];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_261 = _this;
_this setPos [9215.4082, 4959.6289, -2.2888184e-005];
};
_vehicle_264 = objNull;
if (true) then
{
_this = "Body2" createVehicleLocal [9217.5645, 4961.3643, -7.6293945e-005];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_264 = _this;
_this setDir -146.58554;
_this setPos [9217.5645, 4961.3643, -7.6293945e-005];
};
_vehicle_266 = objNull;
if (true) then
{
_this = "Body2" createVehicleLocal [9220.0195, 4953.0513, -2.2888184e-005];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_266 = _this;
_this setDir -108.14923;
_this setPos [9220.0195, 4953.0513, -2.2888184e-005];
};
_vehicle_269 = objNull;
if (true) then
{
_this = "Body1" createVehicleLocal [9217.207, 4953.2314, 7.6293945e-006];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_269 = _this;
_this setPos [9217.207, 4953.2314, 7.6293945e-006];
};
[
["Body1",[9221.8047,4960.5381,0],0],
["Body1",[9215.4082,4959.6289,-2.2888184e-005],0],
["Body2",[9217.5645,4961.3643,-7.6293945e-005],-146.58554],
["Body2",[9220.0195,4953.0513,-2.2888184e-005],-108.14923],
["Body1",[9217.207,4953.2314,7.6293945e-006],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;