Kayo
Kayo
DIAdiscord.js - Imagine an app
Created by Kayo on 9/16/2024 in #djs-questions
Discordjs package Check permission
In the discord.js package, how do I check if, for example, permission '1032' is Administrator? I didn't find anything that tells me this in the package version.
6 replies
DIAdiscord.js - Imagine an app
Created by Kayo on 6/23/2023 in #djs-questions
Where are the collectors?
Where are the Collectors? Changed name on @discord packages? Thanks
7 replies
DIAdiscord.js - Imagine an app
Created by Kayo on 6/23/2023 in #djs-questions
How to update the interaction message?
editReply returns me "Interaction has already been acknowledg"
await api.interactions.defer(interaction.id, interaction.token, {
flags: MessageFlags.Ephemeral,
});
await wait.setTimeout(4000);
await api.interactions.editReply(
interaction.id,
interaction.token,
{
content: 'Hello World',
},
);
await api.interactions.defer(interaction.id, interaction.token, {
flags: MessageFlags.Ephemeral,
});
await wait.setTimeout(4000);
await api.interactions.editReply(
interaction.id,
interaction.token,
{
content: 'Hello World',
},
);
8 replies