I decided to post my config fix xeh for takistan civilians from Leights Opfor pack.
Without this you get no action on civilians to investigate local security.
There are 3 methods/ways (its your choose) to fix it:
- Enable cba_enable_auto_xeh.pbo from latest CBA addon optional directory to force xeh for every spawned unit / vehicle.
- Do the same using mission config version.
- Use mission config version only for LOP_TAK_Civ faction.
Method 2
Create file autoxehenable.hpp in your mission root directory:
//autoxehenable.hpp #define COMPONENT enable_auto_xeh #include "\x\cba\addons\main\script_mod.hpp" #undef REQUIRED_VERSION #define REQUIRED_VERSION 1.00 #include "\x\cba\addons\main\script_macros.hpp" class CfgPatches { class cba_enable_auto_xeh { units[] = {}; weapons[] = {}; requiredVersion = 1.000000; requiredAddons[] = {"Extended_EventHandlers", "CBA_Main"}; version = "1.1.23.150604"; author[] = {"CBA Team"}; authorUrl = "https://github.com/CBATeam/CBA_A3"; }; }; class CfgSettings { class CBA { class XEH { supportMonitor = 1; }; }; };
Include it in your description.ext file:
#include "autoxehenable.hpp"
Method 3
Create file LOP_Tak_Civ_XEH.hpp in your mission root directory:
Include it in your description.ext file:
#include "LOP_Tak_Civ_XEH.hpp"
Enjoy.