Skip to content

$reply

$reply will reply to a given message.

Usage

$reply[messageID?;mentionUser?]

Parameters

FieldTypeDescriptionRequired
messageID?numberThe ID of the message that will be replied to.false
mentionUser?booleanMention the author in the reply?
1. true (default)
2. false
false

Example(s)

This will reply to your command message:

1
client.command({
2
name: "reply",
3
code: `
4
Hello!
5
$reply[$messageID;true]
6
`
7
});