Lazuee
Lazuee
Explore posts from servers
DIAdiscord.js - Imagine an app
Created by Lazuee on 8/7/2023 in #djs-questions
SlashCommandBuilder#addStringOption: set(Min/Max)Length is unnecessary when using setChoices
.addStringOption((options) =>
options
.setName("say")
.setDescription("greetings?")
.setMinLength(1)
.setMaxLength(100)
.setChoices(
{
name: "choice 1",
value: "hello",
},
{
name: "choice 2",
value: "hi",
},
{
name: "choice 3",
value: "hallo",
},
)
.setRequired(true),
);
.addStringOption((options) =>
options
.setName("say")
.setDescription("greetings?")
.setMinLength(1)
.setMaxLength(100)
.setChoices(
{
name: "choice 1",
value: "hello",
},
{
name: "choice 2",
value: "hi",
},
{
name: "choice 3",
value: "hallo",
},
)
.setRequired(true),
);
6 replies
DIAdiscord.js - Imagine an app
Created by Lazuee on 8/6/2023 in #djs-questions
Type 'X' is not comparable to type 'APIApplicationCommandOption'.
6 replies