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