“Discord.js Slash Comandos” Código de respuesta

Discord.js Slash Comandos

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

Discord.js en el comando Slash

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

Comando Discord JS Slash

const { REST } = require('@discordjs/rest');
const { Routes } = require('discord-api-types/v9');
const { token } = require('./config.json');
const fs = require('node:fs');

const commands = [];
const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));

// Place your client and guild ids here
const clientId = '123456789012345678';
const guildId = '876543210987654321';

for (const file of commandFiles) {
	const command = require(`./commands/${file}`);
	commands.push(command.data.toJSON());
}

const rest = new REST({ version: '9' }).setToken(token);

(async () => {
	try {
		console.log('Started refreshing application (/) commands.');

		await rest.put(
			Routes.applicationGuildCommands(clientId, guildId),
			{ body: commands },
		);

		console.log('Successfully reloaded application (/) commands.');
	} catch (error) {
		console.error(error);
	}
})();
Odd Ostrich

Respuestas similares a “Discord.js Slash Comandos”

Preguntas similares a “Discord.js Slash Comandos”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código