Walls & Fence Middle of road

willidshome

Well-Known Member
I have installed the AI Bus and got it working but the only thing which is stopping it now are the Walls and Fence which appear in the road near Skalisty Bridge buildings.

Not the one directly near it but on the opposite side of the road heading North, anyone know which file I need to alter to remove them please.

Untitled-1.jpg


Thanks
 
Got his sorted, buildings.sqf, comment out and changed the fuel tank position to pull it away from the road.

I have put the code below if anyone needs it

Code:
_vehicle_5442 = objNull;  //CHANGED POSITION OF FUEL TANK TO PULL IT AWAY FROM ROAD
if (true) then
{
  _this = createVehicle ["Land_Fuel_tank_stairs", [13204.8,3988.06,0.002], [], 0, "CAN_COLLIDE"]; 
  _vehicle_5442 = _this;
  _this setDir -133.90182;
  _this setPos [13204.8,3988.06,0.002];
};

//_vehicle_5466 = objNull;
//if (true) then
//{
 // _this = createVehicle ["MAP_Newplot", [13202.796, 3948.741, 1.7166138e-005], [], 0, "CAN_COLLIDE"];
 // _vehicle_5466 = _this;
 // _this setPos [13202.796, 3948.741, 1.7166138e-005];
//};

//_vehicle_5467 = objNull;
//if (true) then
//{
  //_this = createVehicle ["MAP_Newplot2", [13206.092, 3952.3984, 2.6226044e-005], [], 0, "CAN_COLLIDE"];
 // _vehicle_5467 = _this;
  //_this setPos [13206.092, 3952.3984, 2.6226044e-005];
//};

//_vehicle_5469 = objNull;
//if (true) then
//{
  //_this = createVehicle ["MAP_plot_istan1_rovny", [13195.28, 3949.3118, 6.2465668e-005], [], 0, "CAN_COLLIDE"];
  //_vehicle_5469 = _this;
  //_this setDir -24.635651;
 // _this setPos [13195.28, 3949.3118, 6.2465668e-005];
//};

//_vehicle_5470 = objNull;
//if (true) then
//{
 // _this = createVehicle ["MAP_plot_istan1_rovny_bezs", [13195.968, 3945.8291, -2.8610229e-006], [], 0, "CAN_COLLIDE"];
  //_vehicle_5470 = _this;
 // _this setPos [13195.968, 3945.8291, -2.8610229e-006];
//};

//_vehicle_5471 = objNull;
//if (true) then
//{
 // _this = createVehicle ["MAP_plot_istan1_rovny_end1", [13199.62, 3945.9727, 1.3828278e-005], [], 0, "CAN_COLLIDE"];
  //_vehicle_5471 = _this;
  //_this setPos [13199.62, 3945.9727, 1.3828278e-005];
//};

//_vehicle_5472 = objNull;
//if (true) then
//{
  //_this = createVehicle ["MAP_plot_istan1_rovny_ohlod", [13194.266, 3943.5444, 4.863739e-005], [], 0, "CAN_COLLIDE"];
  //_vehicle_5472 = _this;
  //_this setPos [13194.266, 3943.5444, 4.863739e-005];
//};

//_vehicle_5473 = objNull;
//if (true) then
//{
  //_this = createVehicle ["MAP_plot_istan1_rovny_short", [13199.437, 3949.5571, 4.3392181e-005], [], 0, "CAN_COLLIDE"];
  //_vehicle_5473 = _this;
  //_this setPos [13199.437, 3949.5571, 4.3392181e-005];
//};

//_vehicle_5474 = objNull;
//if (true) then
//{
 // _this = createVehicle ["MAP_plot_istan1_sloupek", [13192.255, 3941.0605, 4.7683716e-006], [], 0, "CAN_COLLIDE"];
  //_vehicle_5474 = _this;
  //_this setPos [13192.255, 3941.0605, 4.7683716e-006];
//};
 
Back
Top