Skip to content

$interactionEdit

$interactionEdit will return edit an interaction.

Usage

$interactionEdit[content;allowedMentions?]

Parameters

FieldTypeDescriptionRequired
contentstringNew message content.true
allowedMentions?stringAllowed mentions?
1. everyone
2. roles
3. users
false

Example(s)

1
module.exports = [
2
{
3
name: "interactionEdit",
4
type: "interaction",
5
prototype: "slash",
6
code: ` $interactionEdit[Bye, World!]`
7
}
8
];
1
module.exports = [
2
{
3
name: "interactionEdit",
4
type: "interaction",
5
prototype: "slash",
6
code: ` $interactionEdit[Bye, World! {newEmbed:{title:Hello!}{description:This is an embed!}}]`
7
}
8
];