- CheckOnAI [auto, manual, off]
-
- CheckOnAI is an optional parameter.
- CheckOnAI defines in which AI states the automacro can activate.
- The default value for this parameter can be set in the config key eventMacro_CheckOnAI Configuration files.
- If not used in the automacro the default value will be used, which is the config key eventMacro_CheckOnAI.
- If eventMacro_CheckOnAI is not set in the config the default value will be used, which is: auto
- It's values can be a combination of auto, manual and off, separated by comma.
automacro MyAuto1 {
<automacro conditions and parameters (and only them)>
CheckOnAI manual
call myMacro1
}
macro myMacro1 {
<macro instructions (and only them, as this is regular macro)>
log This macro will only be called by MyAuto when AI is manual
}
automacro MyAuto2 {
<automacro conditions and parameters (and only them)>
CheckOnAI manual, off
call myMacro2
}
macro myMacro2 {
<macro instructions (and only them, as this is regular macro)>
log This macro will only be called by MyAuto2 when AI is manual or off
}