macro delay: Difference between revisions

From OpenKore Wiki
Jump to navigation Jump to search
Created page with "{{Template:Macro_delay}} Category:EventMacro_Automacros Category:EventMacro_Parameters"
(No difference)

Revision as of 21:11, 3 July 2019

macro_delay <number>
  • macro_delay is an optional parameter.
  • macro_delay defines the time in seconds to wait between macro commands.
  • If not used in the automacro the default value will be used, which is: 1.
  • Must have a numeric value.
automacro MyAuto1 {
    <automacro conditions and parameters (and only them)>
    macro_delay 2
    call {
        log This will be printed at the macro execution
        log This will be printed 2 seconds after
    }
}

automacro MyAuto2 {
    <automacro conditions and parameters (and only them)>
    macro_delay 5
    call {
        log This will be printed at the macro execution
        log This will be printed 5 seconds after
    }
}