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,84 +1,16 @@
_vehicle_326 = objNull;
if (true) then
{
_this = "Mass_grave" createVehicleLocal [6565.0298, 9319.8213, 3.0517578e-005];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_326 = _this;
_this setDir -16.023432;
_this setPos [6565.0298, 9319.8213, 3.0517578e-005];
};
_vehicle_329 = objNull;
if (true) then
{
_this = "Body2" createVehicleLocal [6559.8589, 9318.3184, -3.0517578e-005];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_329 = _this;
_this setDir -134.36063;
_this setPos [6559.8589, 9318.3184, -3.0517578e-005];
};
_vehicle_331 = objNull;
if (true) then
{
_this = "Body2" createVehicleLocal [6568.5313, 9322.5537, -9.1552734e-005];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_331 = _this;
_this setDir -49.255459;
_this setPos [6568.5313, 9322.5537, -9.1552734e-005];
};
_vehicle_333 = objNull;
if (true) then
{
_this = "Body2" createVehicleLocal [6569.2568, 9317.0537, 3.0517578e-005];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_333 = _this;
_this setDir -6.7714462;
_this setPos [6569.2568, 9317.0537, 3.0517578e-005];
};
_vehicle_336 = objNull;
if (true) then
{
_this = "Body1" createVehicleLocal [6563.2573, 9315.5889, -6.1035156e-005];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_336 = _this;
_this setPos [6563.2573, 9315.5889, -6.1035156e-005];
};
_vehicle_338 = objNull;
if (true) then
{
_this = "Body1" createVehicleLocal [6559.5259, 9290.957, 3.0517578e-005];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_338 = _this;
_this setPos [6559.5259, 9290.957, 3.0517578e-005];
};
_vehicle_340 = objNull;
if (true) then
{
_this = "Body1" createVehicleLocal [6550.4502, 9272.209, 3.0517578e-005];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_340 = _this;
_this setPos [6550.4502, 9272.209, 3.0517578e-005];
};
_vehicle_343 = objNull;
if (true) then
{
_this = "Body2" createVehicleLocal [6566.4673, 9315.0459, -3.0517578e-005];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_343 = _this;
_this setDir -104.92654;
_this setPos [6566.4673, 9315.0459, -3.0517578e-005];
};
[
["Mass_grave",[6565.0298,9319.8213,3.0517578e-005],-16.023432],
["Body2",[6559.8589,9318.3184,-3.0517578e-005],-134.36063],
["Body2",[6568.5313,9322.5537,-9.1552734e-005],-49.255459],
["Body2",[6569.2568,9317.0537,3.0517578e-005],-6.7714462],
["Body1",[6563.2573,9315.5889,-6.1035156e-005],0],
["Body1",[6559.5259,9290.957,3.0517578e-005],0],
["Body1",[6550.4502,9272.209,3.0517578e-005],0],
["Body2",[6566.4673,9315.0459,-3.0517578e-005],-104.92654]
] 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;