Exclusive
From OpenKore Wiki
- exclusive <boolean>
- exclusive is an optional parameter.
- exclusive defines if the macro can be interrupted or not.
- If not used in the automacro the default value will be used, which is: 0.
- When it's value is 0 the macro can be interrupted by other automacros.
- When it's value is 1 the macro can not be interrupted by other automacros.
automacro MyAuto { <automacro conditions and parameters (and only them)> exclusive 0 call myMacro } macro myMacro { <macro instructions (and only them, as this is regular macro)> log This would probably cause a bug because the automacro would activate every AI cycle since the macro is interruptible. } automacro MyAuto2 { <automacro conditions and parameters (and only them)> exclusive 1 call myMacro } macro myMacro2 { <macro instructions (and only them, as this is regular macro)> log Since exclusive is 1 the macro is now uninterruptible and will work properly. }