$repeatMessage

Repeats the provided text a certain amount of times.

Usage

$repeatMessage[howMany;text]

Breakdown

  • howMany - How many times the text is repeated (max 10 times).
  • text - The text to repeat.

Examples

Example #1:

$nomention
$repeatMessage[5;Hello World]

example1

Example #2:

🧙‍♂️ You can use a space at the end of 'text', so there are spaces in-between repeats.

$nomention
$repeatMessage[5;Hello World! ]

example2