Breakin' out of loops/repeats

If I’m in the middle of a ‘repeat through’ loop, or even repeats within repeats, can I just ‘continue the action’ out of it if I want to go to the next rule immediately and forget about the loops?

I’m aware of the break and next commands, but in this instance I’d like to just escape immediately if possible.

Thanks

-Wade

Continue the action, make no decision etc translate into I6 return statements, so yes they immediately leave the loop and go to the next statement.

Thanks Dannii.

-Wade