What building block do i need to use for a while loop that doesnt wait for it to end when the condition is false
basically:
while (some_bool) {
if (!some_bool) break;
// action1
if (!some_bool) break;
// action2
if (!some_bool) break;
etc.
}
// do this immediatly when some_bool is false
ideally immediatly even aborting a running delay, but if thats impossible atleast do it on the next action/step