Enable AI - Theseus-Aegis/MissionTemplate GitHub Wiki
This page will explain the usage of the Disable AI function.
/*
* Author: Mike
* Faster method of using enableAI command.
*
* Features are on the wiki https://community.bistudio.com/wiki/disableAI
*
* Call from init.sqf
*
* Arguments:
* 0: Groups or Units <ARRAY>
* 1: Feature <STRING>
*
* Return Value:
* None
*
* Example:
* [[My_Group_One, My_Group_Two], "PATH"] call MFUNC(enableAI)
* [[My_Group_One, My_Unit_One], "AUTOCOMBAT"] call MFUNC(enableAI)
*/
The disable AI function allows you to easily enable certain types of group AI behaviour via the function instead of using the forEach loops. It can take an array of units and groups.
Example:
[[My_Group_One, My_Group_Two], "PATH"] call TAC_Mission_fnc_enableAI;
This should be called globally from trigger or via init.sqf