Correct me if I'm wrong, but; the repeat condition does not do that. It repeats the actions of an event a specific number of times, that amount of times only and then never again.

For example, consider the following 2 events:

Upon Pressing Spacebar
- Start Loop "Count" 20 times

On Loop "Count"
Repeat 5 times
- Add 1 to Counter

When the user presses spacebar, the counter will instantly be set to 5. Pressing spacebar again will do nothing. If the "repeat" condition did work that way as well it, the counter would appear as 5, then 10, then 15 and then 20.