$addButton
Adds button to the response.
Syntax
$addButton[new row?;interaction ID/url;label;style;(disable?;emoji;message ID)]
Parameters
-
new row?(Type: Bool || Flag: Required): If set toyesthe button will appear in a new row. If it's set tonothe button will appear in the same row as a previous button.A message can have a maximum of 25 buttons (5 rows of 5 buttons).
-
interaction ID/url(Type: String, URL || Flag: Required): Depending on the button type, you either set it tointeraction IDwhich is then used in$onInteraction[ID]callback orURLif it's a link button. -
label(Type: String || Flag: Emptiable): The text value visible on the button. -
style(Type: Enum || Flag: Required): It's used to specify the button's background color. If the button has a link/url you have to set the value tolink. Check this section for more details. -
disable?(Type: Bool || Flag: Vacantable): If set toyesthe button can't be pressed. Defaults asno. -
emoji(Type: Emoji || Flag: Vacantable): Adds an emoji inside the button. Emojis have to be either pasted as unicode or be in the following format<:emoji name:emoji ID>. -
message ID(Type: Snowflake || Flag: Vacantable): Adds a button to the provided message ID. It's important to note that provided message ID author has to be the bot.
Interactive buttons can't have duplicated
ID's in the same message. So for example, you can't have two buttons with the ID set totest.
If
urlis used ininteraction ID/urlargument, it has to start withhttp://orhttps://
Button Style
Buttons can have different styles (background colors).
Here, are all possible values for style function argument.
primary: Blue buttonsecondary: Gray buttonsuccess: Green buttondanger: Red buttonlink: Redirect button
If
linkstyle is used, the button won't send any interactions!
Example
$nomention
Hi
$addButton[no;test;Say hello!;primary;no;]

For more info, see the Button Guide.