Initial commit of Discord bot
This commit is contained in:
34
deploy-commands.js
Normal file
34
deploy-commands.js
Normal file
@@ -0,0 +1,34 @@
|
||||
const { REST, Routes, SlashCommandBuilder } = require('discord.js');
|
||||
require('dotenv').config();
|
||||
|
||||
const commands = [
|
||||
new SlashCommandBuilder()
|
||||
.setName('ping')
|
||||
.setDescription('Replies with Pong!'),
|
||||
new SlashCommandBuilder()
|
||||
.setName('finduser')
|
||||
.setDescription('Find a user by username')
|
||||
.addStringOption(option =>
|
||||
option.setName('username')
|
||||
.setDescription('The username to search for')
|
||||
.setRequired(true)),
|
||||
// Add more commands here
|
||||
];
|
||||
|
||||
const rest = new REST({ version: '10' }).setToken(process.env.BOT_TOKEN);
|
||||
|
||||
(async () => {
|
||||
try {
|
||||
console.log('Started refreshing application (/) commands.');
|
||||
console.log('Commands to be deployed:', commands);
|
||||
|
||||
await rest.put(
|
||||
Routes.applicationCommands(process.env.CLIENT_ID),
|
||||
{ body: commands },
|
||||
);
|
||||
|
||||
console.log('Successfully reloaded application (/) commands.');
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
}
|
||||
})();
|
||||
Reference in New Issue
Block a user