Skip to content

$repeatMessage

$repeatMessage will repeat the given text for given amount of times.

Usage

$repeatMessage[time;text]

Parameters

FieldTypeDescriptionRequired
timenumberThe amount of times the text gets repeated.true
textstringThe text that will get repeated.true

Example(s)

This will return Hello twenty times:

1
client.command({
2
name: "repeatMessage",
3
code: `
4
$repeatMessage[20;Hello ]
5
`
6
});