$reply
$reply
will reply to a given message.
Usage
$reply[messageID?;mentionUser?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
messageID? | number | The ID of the message that will be replied to. | false |
mentionUser? | boolean | Mention the author in the reply? 1. true (default) 2. false | false |
Example(s)
This will reply to your command message:
1client.command({2 name: "reply",3 code: `4 Hello!5 $reply[$messageID;true]6 `7});