-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
129 lines (104 loc) · 3.04 KB
/
main.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
import { Client, Intents, Collection } from "discord.js";
import { fileURLToPath } from "url";
import { dirname } from "path";
import {} from "dotenv/config";
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const client = new Client({
intents: 131071,
partials: [
"CHANNEL",
"GUILD_MEMBER",
"GUILD_SCHEDULED_EVENT",
"MESSAGE",
"REACTION",
"USER",
],
});
const prefix = "+";
import { readdirSync } from "fs";
client.commands = new Collection();
//commandFiles is an array of directory files
client.once("ready", async () => {
console.log("Vettel is now online!");
try {
const commandFiles = readdirSync(__dirname + "/commands").filter((file) =>
file.endsWith(".mjs")
);
commandFiles.map(async (file) => {
const command = await import(`./commands/${file}`);
const { name } = await command;
client.commands.set(name, command);
});
} catch (err) {
console.error(err);
}
});
client.on("messageCreate", (message) => {
if (!message.content.startsWith(prefix) || message.author.bot) {
return;
}
const args = message.content.slice(prefix.length).split(" ");
const command = args.shift().toLowerCase();
if (command === "help") {
client.commands.get("help").execute(message, args);
}
if (command === "why") {
client.commands.get("why").execute(message, args);
}
if (command === "hello" || command === "hi" || command === "hey") {
client.commands.get("hello").execute(message, args);
}
if (command === "last" || command === "latest" || command === "recent") {
client.commands.get("last").execute(message, args);
}
if (command === "result" || command === "results" || command === "race") {
client.commands.get("result").execute(message, args);
}
if (command === "podium") {
client.commands.get("podium").execute(message, args);
}
if (command === "winner") {
client.commands.get("winner").execute(message, args);
}
if (command === "qualifying" || command === "quali") {
client.commands.get("qualifying").execute(message, args);
}
if (command === "wdc" || command === "champion" || command === "champ") {
client.commands.get("wdc").execute(message, args);
}
if (
command === "standings" ||
command === "standing" ||
command === "stand"
) {
client.commands.get("standings").execute(message, args);
}
if (
command === "schedule" ||
command === "program" ||
command === "calendar" ||
command === "cal"
) {
client.commands.get("schedule").execute(message, args);
}
if (
command === "teams" ||
command === "constructors" ||
command === "teamstand" ||
command === "teamstandings"
) {
client.commands.get("teams").execute(message, args);
}
if (
command === "wcc" ||
command === "championteam" ||
command === "champteam"
) {
client.commands.get("wcc").execute(message, args);
}
if (command === "joke") {
client.commands.get("joke").execute(message, args);
}
});
client.login(process.env.BOT_TOKEN);