Skip to content

$interactionFollowUp

$interactionFollowUp can be used for JSON requests, song information or playing tracks, since these things takes more than 3 seconds.

Usage

$interactionFollowUp[content?;ephemeral?;returnID?]

Parameters

FieldTypeDescriptionRequired
contentstringNew message content.true
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
module.exports = [
2
{
3
name: "interactionFollowUp",
4
type: "interaction",
5
prototype: "slash",
6
code: `
7
$interactionFollowUp[Bye, world!]
8
$interactionDefer[true]
9
`
10
}
11
];
1
module.exports = [
2
{
3
name: "interactionFollowUp",
4
type: "interaction",
5
prototype: "slash",
6
code: `
7
$interactionFollowUp[Bye, world! {newEmbed:{title:Hello!}{description:This is an embed!}}]
8
$interactionDefer[true]
9
`
10
}
11
];