Difference between revisions of "Template:CheckOnAI"

From OpenKore Wiki
Jump to navigation Jump to search
 
Line 8: Line 8:
 
:* It's values can be a combination of auto, manual and off, separated by comma.
 
:* It's values can be a combination of auto, manual and off, separated by comma.
  
  automacro MyAuto {
+
  automacro MyAuto1 {
 
     <automacro conditions and parameters (and only them)>
 
     <automacro conditions and parameters (and only them)>
 
     CheckOnAI manual
 
     CheckOnAI manual
     call myMacro
+
     call myMacro1
 
  }
 
  }
  macro myMacro {
+
  macro myMacro1 {
 
     <macro instructions (and only them, as this is regular macro)>
 
     <macro instructions (and only them, as this is regular macro)>
 
     log This macro will only be called by MyAuto when AI is manual
 
     log This macro will only be called by MyAuto when AI is manual
Line 21: Line 21:
 
     <automacro conditions and parameters (and only them)>
 
     <automacro conditions and parameters (and only them)>
 
     CheckOnAI manual, off
 
     CheckOnAI manual, off
     call myMacro
+
     call myMacro2
 
  }
 
  }
 
  macro myMacro2 {
 
  macro myMacro2 {

Latest revision as of 23:00, 9 September 2020

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 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
}