$editSelectMenuOption
Edits a select menu option.
You can edit the main select menu with
$editSelectMenu[]
.
Syntax
$editSelectMenuOption[Menu option ID;Label;Value;Description;(Default;Emoji;Message ID)]
Parameters
Menu option ID
(Type: String || Flag: Required)
: The select menu ID. It has to be the same as the ID used in its$newSelectMenu[]
.Label
(Type: String || Flag: Required)
: The name of the option.Value
(Type: String || Flag: Required)
: The value of the option. It’s the data that gets passed to the$onInteraction[]
callback. The value has to be unique in the select menu!Description
(Type: String || Flag: Vacantable)
: The description of the option. It shows up under theLabel
.Default
(Type: Bool || Flag: Vacantable)
: Decide if the option should be selected by default. There can be only one default option!Emoji
(Type: Emoji || Flag: Vacantable)
: The emoji of the option. It shows up next to theLabel
.Message ID
(Type: Snowflake || Flag: Optional)
: The message ID, menu attached to it.
Example
Interaction Code
$editSelectMenuOption[Example;First;first-option;The first option;no;1️⃣]
$editSelectMenuOption[Example;Second;second-option;The second option;no;2️⃣]
$editSelectMenuOption[Example;Third;third-option;The third option;no;3️⃣]
Output
Before
After
For more info, see the Select Menu Guide.