factor
factor
DIAdiscord.js - Imagine an app
Created by factor on 8/3/2023 in #djs-questions
Display Attachment in Embed
got it, thank you
10 replies
DIAdiscord.js - Imagine an app
Created by factor on 8/3/2023 in #djs-questions
Display Attachment in Embed
client.on(GatewayDispatchEvents.InteractionCreate, async ({ data: interaction, api }) => {
client.on(GatewayDispatchEvents.InteractionCreate, async ({ data: interaction, api }) => {
10 replies
DIAdiscord.js - Imagine an app
Created by factor on 8/3/2023 in #djs-questions
Display Attachment in Embed
I am using @djs/core /rest /ws
10 replies
DIAdiscord.js - Imagine an app
Created by factor on 8/3/2023 in #djs-questions
Display Attachment in Embed
10 replies
DIAdiscord.js - Imagine an app
Created by factor on 8/3/2023 in #djs-questions
Display Attachment in Embed
const options = interaction.data.options;
...
const attachment = options.find((option) => option.name === "attachment" && option.type === ApplicationCommandOptionType.Attachment);
...
const embed = new EmbedBuilder()
...
.setImage()
const options = interaction.data.options;
...
const attachment = options.find((option) => option.name === "attachment" && option.type === ApplicationCommandOptionType.Attachment);
...
const embed = new EmbedBuilder()
...
.setImage()
10 replies