Template:Timeout

From OpenKore Wiki
Revision as of 21:29, 3 July 2019 by 4epT (talk | contribs) (Created page with " <noinclude>This template describes the '''timeout''' parameter of the automacro eventMacros.</noinclude> ; timeout <number> :* '''timeout''' is...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
This template describes the timeout parameter of the automacro eventMacros.
timeout <number>
  • timeout is an optional parameter.
  • timeout defines the time in seconds before this automacro can activate again after an activation.
  • If not used in the automacro the default value will be used, which is: 0.
  • Must have a numeric value.
automacro <automacro name> {
    <automacro conditions and parameters (and only them)>
    timeout 60
    call myMacro
}
macro myMacro {
    <macro instructions (and only them, as this is regular macro)>
    log This macro will only be called every 60 seconds
}