Break is a node used inside macros to immediately exit a Repeat loop, similar to the break
statement in C#. It lets you stop the current loop without waiting for all iterations to finish.
Repeat (up to 5 times)
├── SomeAction
├── IfThenElse
│ ├── Condition: Enemy found
│ ├── If yes: Break
│ └── If no: (nothing)
└── Another action
In this example, if an enemy is found during one of the iterations, Break is executed—the Repeat loop immediately stops and the macro continues with the node following Repeat. The remaining iterations will not run.