-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
57 lines (45 loc) · 1.52 KB
/
Copy pathindex.js
File metadata and controls
57 lines (45 loc) · 1.52 KB
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
const { Client, GatewayIntentBits, Collection } = require("discord.js");
const fs = require("fs");
const path = require("path");
const config = require("./config");
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildModeration,
],
});
client.commands = new Collection();
const commandsPath = path.join(__dirname, "commands");
const commandFiles = fs
.readdirSync(commandsPath)
.filter((f) => f.endsWith(".js"));
for (const file of commandFiles) {
const command = require(path.join(commandsPath, file));
client.commands.set(command.name, command);
}
client.once("clientReady", () => {
console.log(`AscendStaff is online as ${client.user.tag}`);
client.user.setActivity("as!help | AscendGems");
});
client.on("messageCreate", async (message) => {
if (!message.content.startsWith(config.prefix) || message.author.bot) return;
const args = message.content.slice(config.prefix.length).trim().split(/ +/);
const commandName = args.shift()?.toLowerCase();
if (!commandName) return;
const command =
client.commands.get(commandName) ||
client.commands.find((c) => c.aliases?.includes(commandName));
if (!command) return;
try {
await command.execute(message, args, client);
} catch (err) {
console.error(err);
message
.reply("An error occurred while executing that command.")
.catch(() => {});
}
});
client.login(config.token);