Reactions on danger - only for groups without active waypoints:
First, the group tries to move to cover. Then, a random action is sometimes selected from these currently available types:
- attack - leader goes to cover, orders units to go hunt the enemy
- defend - group set to defensive mode, units mount near vehicle weapons and statics
- support - find a friendly group that is taking damage, move there to support
Userconfig looks like this:
Code:
reactions[] = {1,1,0}; // Infantry groups will randomly react with basic, scripted, random actions, to detecting the enemy or being shot at; format: {enableAttack,enableDefend,enableSupport}
Which means attack and defend reactions are enabled by default but not the support action. To enable that too, set:
Code:
reactions[] = {1,1,1};