Difference between revisions of "Template:CheckOnAI"

From OpenKore Wiki
Jump to navigation Jump to search
(Created page with " <noinclude>This template describes the '''CheckOnAI''' parameter of the automacro eventMacros.</noinclude> ; CheckOnAI :* '''CheckOnAI''' is an opti...")
 
Line 1: Line 1:
 
  <noinclude>This template describes the '''CheckOnAI''' [[EventMacro#Parameters|parameter]] of the automacro eventMacros.</noinclude>
 
  <noinclude>This template describes the '''CheckOnAI''' [[EventMacro#Parameters|parameter]] of the automacro eventMacros.</noinclude>
; CheckOnAI
+
; CheckOnAI [auto, manual, off]
 
:* '''CheckOnAI''' is an optional parameter.
 
:* '''CheckOnAI''' is an optional parameter.
 
:* '''CheckOnAI''' defines in which AI states the automacro can activate.
 
:* '''CheckOnAI''' defines in which AI states the automacro can activate.

Revision as of 20:38, 3 July 2019

This template describes the CheckOnAI parameter of the automacro eventMacros.
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 MyAuto {
    <automacro conditions and parameters (and only them)>
    CheckOnAI manual
    call myMacro
}
macro myMacro {
    <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 myMacro
}
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
}