run-once
Jump to navigation
Jump to search
- run-once <boolean>
-
- run-once is an optional parameter.
- run-once defines if the automacro can activate only once, or multiple times.
- If not used in the automacro the default value will be used, which is: 0.
- When it's value is 1 the automacro will only activate once, when it's 0 it can activate multiple times.
- To make an automacro with run-once value of 1 which already was already activated be able to run again you can use the command 'release' Macro Syntax.
automacro MyAuto1 { <automacro conditions and parameters (and only them)> run-once 1 call myMacro } automacro MyAuto2 { <automacro conditions and parameters (and only them)> run-once 0 call myMacro } macro myMacro { <macro instructions (and only them, as this is regular macro)> log This macro will be called by MyAuto1 only once log but this macro can be called by MyAuto2 many times }