Heli's keep taking the bridge out on Tavi

ukdayz

Member
I have the newest release of DZAI running but any release i have had has the same effect, the Helis crash in to the bridge on the tavi map, generally they hit the suspension bridge and blow up, but i have seen it for myself they end up on the bridge itself no pilot but a gunner is still in there, as you get near it blows up and takes the bridge out.

they have also crashed into the mountains too any ideas where i'm going wrong ?

i have made sure DZAI_objPatch = true;
 
Very tall objects and mountains will cause AI pilots to crash, it's a fault of the unintelligent Arma2 piloting AI and the geography of the Taviana terrain. You could try to increase the minimum flying height from 100m to 125m. You can make these edits yourself by editing init\dzai_functions.sqf.

Search for this partial line (CTRL+F):

Code:
(vehicle (leader _unitGroup)) flyInHeight

Edit that entire line to read:

Code:
(vehicle (leader _unitGroup)) flyInHeight (125+ (random 15));

Second file to edit is spawn_functions\spawn_heliPatrol.sqf, locate this line:

Code:
_helicopter setVehicleAmmo 1;

Replace it with this to increase the initial flying height:

Code:
_helicopter setVehicleAmmo 1;
_helicopter flyInHeight 125;
 
Back
Top