FateAssassin
FateAssassin
DIAdiscord.js - Imagine an app
Created by FateAssassin on 12/26/2023 in #djs-questions
Message Commands
Hey, I am new to Discord.Js and I want to rewrite my bot here, and I saw that there is nothing in the guide about message commands. Does V14 only support Slashcommands ?
6 replies
DIAdiscord.js - Imagine an app
Created by FateAssassin on 7/1/2023 in #djs-questions
Unknown Message
const message = await interaction.fetchReply();
const collector = message.createMessageComponentCollector({ componentType: ComponentType.Button, time: 3_600_000 });

collector.on('collect', async i => {
await i.message.edit({ content: "hello"})
});
const message = await interaction.fetchReply();
const collector = message.createMessageComponentCollector({ componentType: ComponentType.Button, time: 3_600_000 });

collector.on('collect', async i => {
await i.message.edit({ content: "hello"})
});
17 replies