-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.ts
52 lines (43 loc) · 1.13 KB
/
bot.ts
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
import { token, prefix } from "./config.json";
import {
Client,
Intents,
Message,
TextChannel,
User,
VoiceChannel,
} from "discord.js";
import randomise from "./commands/randomise";
const client = new Client({
intents: [
Intents.FLAGS.GUILDS,
Intents.FLAGS.GUILD_MESSAGES,
Intents.FLAGS.GUILD_MEMBERS,
Intents.FLAGS.GUILD_VOICE_STATES,
Intents.FLAGS.DIRECT_MESSAGES,
],
});
client.once("ready", async () => {
console.log("Ready!");
});
client.on("messageCreate", (message: Message) => {
const user = message.author;
if (!message.content.startsWith(prefix) || message.member?.nickname != "! GOD") {
return;
}
const [CMD_NAME, ...args] = message.content
.trim()
.substring(prefix.length)
.split(" ");
const member = message.member;
const voiceChannel = member?.voice.channel;
const textChannel = message.channel;
message.delete();
if (CMD_NAME === "randomise" || CMD_NAME === "Randomise") {
randomise(textChannel as TextChannel, args, voiceChannel as VoiceChannel);
} else {
textChannel.send("Oh sth went wrong!");
}
});
client.login(token);
export default client;