April/index.mjs

42 lines
1.1 KiB
JavaScript
Raw Permalink Normal View History

2023-09-13 21:12:45 +02:00
import fs from "fs";
import { Client, GatewayIntentBits } from "discord.js";
import { deploy_commands, loadDatabase, loadErrorCatcher } from './functions.mjs';
import config from './config.json' assert { type: 'json' };
const { token } = config;
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMembers,
2023-09-04 00:26:13 +02:00
GatewayIntentBits.GuildModeration,
GatewayIntentBits.GuildMessages
]
});
loadDatabase(client);
loadErrorCatcher(client);
2023-09-13 21:12:45 +02:00
const eventFiles = fs.readdirSync('./events').filter(file => file.endsWith('.mjs'));
for (const file of eventFiles) {
2023-09-13 21:12:45 +02:00
const { default: event } = await import(`./events/${file}`);
if (event.once) {
client.once(event.name, (...args) => event.execute(...args, client));
} else {
client.on(event.name, (...args) => event.execute(...args, client));
}
console.log(`Loaded ${event.name} event !`);
}
deploy_commands(client, true);
/*
2023-04-24 20:45:36 +02:00
true will refresh slash commands (SET endpoint)
false will delete them (SET endpoint with an empty array)
null will not change slash commands
*/
client.login(token);