ModEnc is currently in Maintenance Mode: Changes could occur at any given moment, without advance warning.
AITriggerTypesEnable
This page should correctly be named "[AITriggerTypesEnable]"; it is wrong due to technical restrictions.
This section is responsible for disabling certain AITriggerTypes in particular maps. See the Bugs section for several problems with it.
Section
TD/CO
Doesn't exist.
RA/CS/AM
Doesn't exist.
TS/FS/RA2/YR
The [AITriggerTypesEnable] section in a map takes this format:
[AITriggerTypesEnable] TRIGGER_ID=STATUS
String | Meaning |
---|---|
TRIGGER_ID | The AITriggerType's ID. |
STATUS | If this is a boolean 'true', this AITriggerType will be disabled in this map. |
Problems
Note: The code implementing this feature is, let's say, sub-optimal. Avoid filling this section needlessly. It works in the following way: Global AITriggers are enabled at startup, local AITriggers are not. Then a pass is made over this section and if a trigger is listed here, its enabled-ness is set to STATUS. If this is not an SP campaign map, that trigger is enabled regardless of STATUS.
From that follows:
- global AITriggers should only be listed here if you want to disable some of them at startup,
- local AITriggers should only be listed here if you want to enable them at startup. If you do not list a local AITrigger here, you will have to rely on a map trigger activating it later.