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,73 +1,15 @@
_vehicle_186 = objNull;
if (true) then
{
_this = "Body1" createVehicleLocal [10174.857, 3126.1104, -1.9073486e-005];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_186 = _this;
_this setPos [10174.857, 3126.1104, -1.9073486e-005];
};
_vehicle_189 = objNull;
if (true) then
{
_this = "Body2" createVehicleLocal [10177.264, 3126.8271, 1.1444092e-005];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_189 = _this;
_this setDir -241.20241;
_this setPos [10177.264, 3126.8271, 1.1444092e-005];
};
_vehicle_192 = objNull;
if (true) then
{
_this = "BRDMWreck" createVehicleLocal [10212.747, 3181.915, -2.2888184e-005];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_192 = _this;
_this setDir 79.571251;
_this setPos [10212.747, 3181.915, -2.2888184e-005];
};
_vehicle_195 = objNull;
if (true) then
{
_this = "Body1" createVehicleLocal [10213.748, 3179.0986, 6.6757202e-005];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_195 = _this;
_this setPos [10213.748, 3179.0986, 6.6757202e-005];
};
_vehicle_198 = objNull;
if (true) then
{
_this = "Body2" createVehicleLocal [10214.048, 3185.6113, -0.00019645691];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_198 = _this;
_this setDir -208.83;
_this setPos [10214.048, 3185.6113, -0.00019645691];
};
_vehicle_200 = objNull;
if (true) then
{
_this = "Body2" createVehicleLocal [10217.711, 3180.9695, -0.00023651123];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_200 = _this;
_this setDir -321.35828;
_this setPos [10217.711, 3180.9695, -0.00023651123];
};
_vehicle_203 = objNull;
if (true) then
{
_this = "Body1" createVehicleLocal [10216.19, 3186.8555, -0.00011634827];
_this setVariable ["", true]; // prevent network SV by loot/zeds spawner
_vehicle_203 = _this;
_this setPos [10216.19, 3186.8555, -0.00011634827];
};
[
["Body1",[10174.857,3126.1104,-1.9073486e-005],0],
["Body2",[10177.264,3126.8271,1.1444092e-005],-241.20241],
["BRDMWreck",[10212.747,3181.915,-2.2888184e-005],79.571251],
["Body1",[10213.748,3179.0986,6.6757202e-005],0],
["Body2",[10214.048,3185.6113,-0.00019645691],-208.83],
["Body2",[10217.711,3180.9695,-0.00023651123],-321.35828],
["Body1",[10216.19,3186.8555,-0.00011634827],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;