Functions: Repeat Function - Wynntils/Wynntils GitHub Wiki
None
Returns the a repeated string.
This function has 2 required arguments.
- value (String) → The string to be repeated.
- count (Integer) → The number of times to repeat the string.
REPEAT(<value>;<count>) → (String)
REPEAT("Again! "; 3) → "Again! Again! Again!"