Another quick extension from LB.
The Inline Loop Object basically allows you to have an inline fastloop that runs every frame. With regular fastloops you must do this:
Always: Start Fastloop "My Loop" 10 times
On Fastloop "My Loop": Do Stuff
With the Inline Loop object, you can mimic that behavior like this:
Loop "My Loop" 10 times: Do Stuff
You can also have more than one Loop "My Loop" conditions and they will act the same as a fastloop that is run every frame.
For fully understanding how the object works, you should check the example file! It explains the purpose of the Max parameter.