Dropdown field selected
client.on("dropdownSelected", dropdown => {
console.log(dropdown)
// Response to the dropdown selection with the selected value
dropdown.reply(You selected ${dropdown.values.map(e => `\`${e}\``).join(" ")}`) // send the selected value(s)
})Last updated