AI Attack in traders

You might also wanna try to blacklist the trader zones or else AI will still go there and attempt to shoot...
 
in one of the aiconfigs (not sure which one, you'd have to test and poke around) you can use
Code:
while {true} do {
   
    waitUntil { !canBuild };
    deleteVehicle _unit;
};

and it will continuously loop until an AI enters a trader area (where you can't build, obviously) then it will delete it
 
Back
Top