forked from Adivise/DisSpaceX
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdisspace.js
58 lines (51 loc) · 1.91 KB
/
disspace.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
const { Client, Collection, GatewayIntentBits } = require("discord.js");
const { DisTube } = require('distube');
const { SoundCloudPlugin } = require('@distube/soundcloud');
const { SpotifyPlugin } = require('@distube/spotify');
const { YtDlpPlugin } = require("@distube/yt-dlp");
class MainClient extends Client {
constructor() {
super({
shards: "auto",
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMembers,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.GuildVoiceStates,
GatewayIntentBits.MessageContent,
],
allowedMentions: {
parse: ["roles", "users", "everyone"],
repliedUser: false
},
});
process.on('unhandledRejection', error => console.log(error));
process.on('uncaughtException', error => console.log(error));
this.config = require('./settings/config.js');
this.prefix = this.config.PREFIX;
this.owner = this.config.OWNER_ID;
if (!this.token) this.token = this.config.TOKEN;
const client = this;
this.distube = new DisTube(client, {
searchSongs: 0, /// SET TO 5 FOR ENABLE SEARCH MODE!
searchCooldown: 30,
leaveOnEmpty: true,
emptyCooldown: 60,
leaveOnFinish: true,
leaveOnStop: true,
plugins: [
new SoundCloudPlugin(),
new SpotifyPlugin({
emitEventsAfterFetching: true
}),
new YtDlpPlugin()
],
});
["aliases", "commands"].forEach(x => client[x] = new Collection());
["loadCommands", "loadEvents", "loadDistube"].forEach(x => require(`./handlers/${x}`)(client));
}
connect() {
return super.login(this.token);
};
};
module.exports = MainClient;