hello I use ModuleCAS_F for a strafing support, but have a problem with VCOM (version 2.7 scripts) When VCOM is active on mission, the aircraft have strange behavior and doesn't do his job correctly. Steps to reproduce : in demo mission (VCOM AI Quick Showcase) or a new mission with only VCOM, and with a lot of enemy groups (infantries and vehicles), i call ModuleCAS in debug console :
_group = createGroup WEST;
_cas = _group createUnit ["ModuleCAS_F",(position player) , [], 0, ""];
_cas setVariable ["vehicle", "B_Plane_CAS_01_F", true];
_cas setVariable ["type", 0, true];
I tried with _cas setvariable ["NOAI",true]; or (driver _cas) setvariable ["NOAI",true]; or { (driver _x) setvariable ["NOAI",true]; } foreach (vehicles isKindOf "air'); but doesn't work. I search a solution :P