maptest-bot/bot.js

40 lines
1.1 KiB
JavaScript
Raw Normal View History

const fs = require('node:fs');
const { Client, Collection, Intents } = require("discord.js");
const {token} = require("./config.json");
const client = new Client({ intents: [Intents.FLAGS.GUILDS]});
client.commands = new Collection();
const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));
for (const file of commandFiles) {
const command = require(`./commands/${file}`);
// Set a new item in the Collection
// With the key as the command name and the value as the exported module
client.commands.set(command.data.name, command);
2022-05-12 18:47:56 +00:00
}
client.on('interactionCreate', async interaction => {
if (!interaction.isCommand()) return;
const command = client.commands.get(interaction.commandName);
if (!command) return;
try {
await command.execute(interaction);
} catch (error) {
console.error(error);
await interaction.reply({ content: 'There was an error while executing this command!', ephemeral: true });
}
});
2022-05-12 18:47:56 +00:00
2022-05-13 05:06:45 +00:00
client.on("error", async error => {
});
2022-05-12 18:47:56 +00:00
client.once("ready", () => {
console.log("Ready");
});
client.login(token);