MQ2Bucles

This plugin adds while and do bucles (loops) to macros. This  plugin add commands to create "while" and "do" bucles inside your macros.
It also add the commands "break" and "continue" to handle "while", "do" and "for" bucles.

Commands: 

/while (<condition>)

/endwhile  - Executes a bucle(loop), evaluating the condition on each iteration.

/do

/until (<condition>) - Executes a bucle(loop), evaluating the condition on each iteration but on first one.

/break - Stops a /while, /do or /for bucle(loop).

/continue  - Stops a /while, /do or /for bucle(loop), reevaluating the condition.