$repeatMessage

Repeats the provided text a certain amount of times.

Usage

$repeatMessage[amount;message]

Parameters

  • amount (Type: Integer || Flag: Required): The number of times to repeat the given text (max 10 times).
  • message (Type: String || Flag: Emptiable): 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