Skip to content

$interactionReply

$interactionReply allows you to send an interaction message reply.

Usage

$interactionReply[content?;allowedMentions?;ephemeral?;returnID?]

Parameters

FieldTypeDescriptionRequired
contentstringNew message content.true
allowedMentions?stringAllowed mentions?
1. everyone
2. roles
3. users
false
ephemeral?booleanVisible to the command author only?
1. true
2. false (default)
false
returnID?booleanReturn message ID?
1. true
2. false (default)
false

Example(s)

1
client.interactionCommand({
2
name: "interactionReply",
3
prototype: "slash", // button/selectMenu/slash
4
code: `
5
$interactionReply[Hello, world!;everyone;false;false]
6
`
7
});
1
client.interactionCommand({
2
name: "interactionReply",
3
prototype: "slash", // button/selectMenu/slash
4
code: `
5
$interactionReply[Hello, world! {newEmbed:{title:Hello!}{description:This is an embed!}};everyone;false;false]
6
`
7
});