April/index.mjs
2023-10-13 15:04:11 +02:00

45 lines
1.1 KiB
JavaScript

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,
GatewayIntentBits.GuildModeration,
GatewayIntentBits.GuildMessages,
],
});
loadDatabase(client);
loadErrorCatcher(client);
const eventFiles = fs
.readdirSync("./events")
.filter((file) => file.endsWith(".mjs"));
for (const file of eventFiles) {
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);
/*
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);