Difference between revisions of "priority"

From OpenKore Wiki
Jump to navigation Jump to search
(Created page with "{{Template:Priority}} Category:EventMacro_Automacros Category:EventMacro_Parameters")
 
m (Conversion script moved page Priority to priority: Converting page titles to lowercase)
 
(No difference)

Latest revision as of 22:35, 26 April 2021

priority <number>
  • priority is an optional parameter.
  • priority defines the priority for activation the automacro has between all automacros, the lower the priority, the sooner it will be checked.
  • If not used in the automacro the default value will be used, which is: 0.
  • Must have a numeric value.
automacro MyAuto1 {
    <automacro conditions and parameters (and only them)>
    priority 5
    call {
        log This automacro will be checked after MyAuto2 because it's priority is higher
    }
}

automacro MyAuto2 {
    <automacro conditions and parameters (and only them)>
    priority 2
    call {
        log This automacro will be checked before MyAuto1 because it's priority is lower
    }
}