forked from EmirhanSarac/discord-v14-muzik-botu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bott.js
58 lines (50 loc) · 1.92 KB
/
bott.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/ayarlar.js');
this.prefix = this.config.PREFIX;
this.sahip = this.config.SAHİP;
if (!this.token) this.token = this.config.TOKEN;
const client = this;
this.distube = new DisTube(client, {
searchSongs: 0, /// ARAMA MODUNU ETKİNLEŞTİRMEK İÇİN 5'E AYARLAYIN!
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;