“Discord.js on Slash Command” Ответ

Discord.js Slash Commands

bot.api.applications(bot.user.id).commands.post({
  data: {
    name: "commandname",
    description: "Command Description",
  },
});
YodaForce157

Discord.js on Slash Command

client.on('interactionCreate', (interaction) => {
	if(!interaction.isCommand()) return;
  	interaction.reply('Pong!')
})
Embarrassed Earthworm

Ответы похожие на “Discord.js on Slash Command”

Вопросы похожие на “Discord.js on Slash Command”

Больше похожих ответов на “Discord.js on Slash Command” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования