AI Cannot See Small Drones
By default, AI soldiers shoot down small drones even when they fly 100m above them. With this mod, the AI will ignore the player’s small drone when it’s above 80m alt – although they are not super-strict with this number, both ways.
This mod makes no changes to the AI logic, so ALL AI mods are compatible.
On the topic of drones, the following script creates a drone near the player and this drone will also be ignored by the AI above some set alt. Pause the game, copy and paste the code below into the debug console and press "local exec". The script is completely independent of the mod: the mod can be used without the script, the script can be used without the mod.
myUAV = createVehicle ["B_UAV_01_F", getPos player, [], 0,""];
createVehicleCrew myUAV;
[] spawn {while { alive myUAV} do
{
pos = getPosATL myUAV ;
h= pos#2;
if (h>80) then {myUAV setCaptive true};
if (h<80) then {myUAV setCaptive false};
sleep 2; } }