$interactionReply
$interactionReply allows you to send an interaction message reply.
Usage
$interactionReply[content?;allowedMentions?;ephemeral?;returnID?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| content | string | New message content. | true |
| allowedMentions? | string | Allowed mentions? 1. everyone 2. roles 3. users | false |
| ephemeral? | boolean | Visible to the command author only? 1. true 2. false (default) | false |
| returnID? | boolean | Return message ID? 1. true 2. false (default) | false |
Example(s)
1client.interactionCommand({2 name: "interactionReply",3 prototype: "slash", // button/selectMenu/slash4 code: `5 $interactionReply[Hello, world!;everyone;false;false]6 `7});1client.interactionCommand({2 name: "interactionReply",3 prototype: "slash", // button/selectMenu/slash4 code: `5 $interactionReply[Hello, world! {newEmbed:{title:Hello!}{description:This is an embed!}};everyone;false;false]6 `7});