-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
73 lines (65 loc) · 2.04 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
// Imports
const { Client, Collection, GatewayIntentBits } = require("discord.js");
const { getJsFiles } = require("./utils/fileUtils");
// Store wiki server ids and embed color in global for ease of access, won't overwrite anything in the environment
global.wConfig = require("./config.json");
global.colors = {
purple: 0xb33fe6,
red: 0xed4245,
blue: 0x3498db,
orange: 0xe67e22,
green: 0x57f287,
darkBlue: 0x71368a,
gold: 0xf1c40f
};
// Configure client
const client = new Client({
intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMembers, GatewayIntentBits.GuildMessages, GatewayIntentBits.MessageContent, GatewayIntentBits.GuildBans],
allowedMentions: {
roles: [
global.wConfig.roles["Stealth Ping"],
global.wConfig.roles["Loud Ping"],
global.wConfig.roles["Ironman Ping"],
global.wConfig.roles["Shadow War Ping"],
global.wConfig.roles["Freelance Heist Ping"],
global.wConfig.roles["Night Heist Ping"],
global.wConfig.roles["Daily Challenge Ping"]
]
}
});
client.commands = new Collection();
client.contextMenus = new Collection();
// Error logging
process.on("uncaughtException", (error) => console.error(error));
// Get all event handlers
const allEvents = [...getJsFiles("./events"), ...getJsFiles("./events/command"), ...getJsFiles("./events/wiki-server"), ...getJsFiles("./events/log")];
// Bind event handlers
allEvents.forEach((file) => {
const event = require(`./${file}`);
if (event.once) {
client.once(event.name, (...args) => {
try {
event.execute(...args, client);
} catch (error) {
console.error(error);
}
});
} else {
client.on(event.name, (...args) => {
try {
event.execute(...args, client);
} catch (error) {
console.error(error);
}
});
}
});
// Get commands
const allCommands = [...getJsFiles("./commands"), ...getJsFiles("./commands/wiki-server")];
// Store commands in client
allCommands.forEach((file) => {
const command = require(`./${file}`);
if (!command?.disabled) client.commands.set(command.name, command);
});
// Client login
client.login(process.env.TOKEN);