-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
74 lines (61 loc) · 2.9 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
const fs = require('node:fs');
const path = require('node:path');
const { Client, Collection, GatewayIntentBits } = require('discord.js');
require('dotenv').config();
const functionsExt = require('./functions');
const client = new Client({ intents: [ Object.keys(GatewayIntentBits), GatewayIntentBits.Guilds, GatewayIntentBits.GuildMembers, GatewayIntentBits.MessageContent ] });
client.commands = new Collection();
const foldersPath = path.join(__dirname, 'src/commands/.');
const commandFolders = fs.readdirSync(foldersPath);
for (const folder of commandFolders) {
const commandsPath = path.join(foldersPath, folder);
const commandFiles = fs.readdirSync(commandsPath).filter(file => file.endsWith('.js'));
for (const file of commandFiles) {
const filePath = path.join(commandsPath, file);
const command = require(filePath);
// Set a new item in the Collection with the key as the command name and the value as the exported module
if ('data' in command && 'execute' in command) {
client.commands.set(command.data.name, command);
} else {
console.log(`[WARNING] The command at ${filePath} is missing a required "data" or "execute" property.`);
}
}
}
const eventsPath = path.join(__dirname, 'src/events');
const eventFiles = fs.readdirSync(eventsPath).filter(file => file.endsWith('.js'));
const functions = fs.readdirSync("./src/functions").filter(file => file.endsWith(".js"));
(async () => {
for (file of functions) {
require(`./src/functions/${file}`)(client);
}
client.handleEvents(eventFiles, "./src/events");
client.handleCommands(commandFolders, "./src/commands");
})();
var eCount = 0;
var getEventsStatus = false;
// Load handlers
fs.readdirSync('./src/Event Handler').forEach((dir) => {
fs.readdirSync(`./src/Event Handler/${dir}`).forEach((handler) => {
require(`./src/Event Handler/${dir}/${handler}`)(client);
eCount++
getEventsStatus = true
});
});
//Anti Crash System
process.on('unhandledRejection', (reason, promise) => {
console.error("Unhandled Rejection at:", promise, "reason:", reason);
// Optionally use functionsExt.generateError if it logs the details as desired
functionsExt.generateError("Unhandled Rejection", reason.stack ? reason + '\n' + reason.stack : reason, promise);
});
process.on('uncaughtException', (err) => {
console.error("Uncaught Exception:", err);
// Optionally use functionsExt.generateError if it logs the details as desired
functionsExt.generateError("Uncaught Exception", err.stack ? err + '\n' + err.stack : err);
});
process.on('uncaughtExceptionMonitor', (err, origin) => {
console.error("Uncaught Exception Monitor:", err, "Origin:", origin);
// Optionally use functionsExt.generateError if it logs the details as desired
functionsExt.generateError("Uncaught Exception Monitor", err.stack ? err + '\n' + err.stack : err, origin);
});
// Log in to Discord with your client's token
client.login(process.env.DISCORD_TOKEN);