borq
borq
DIAdiscord.js - Imagine an app
Created by borq on 2/7/2024 in #djs-questions
Interaction reply option type for Stickers?
I can send stickers in messages no problem however when I try to reply via interactions it will not send the sticker.
const sticker = client.guilds.cache.get('guild_id').stickers.cache.get('sticker_id')

await interaction.reply({
content: str,
ephemeral: false,
stickers: [sticker]
})
const sticker = client.guilds.cache.get('guild_id').stickers.cache.get('sticker_id')

await interaction.reply({
content: str,
ephemeral: false,
stickers: [sticker]
})
https://old.discordjs.dev/#/docs/discord.js/14.14.1/typedef/BaseMessageOptions
I am not sure where a guild's sticker would fit in with an interaction reply 😦
3 replies