-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
183 lines (157 loc) · 5.61 KB
/
index.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
const Discord = require('discord.js');
const client = new Discord.Client();
const fs = require('fs');
const db = require('quick.db');
const useful = require('useful-tools');
client.ayar = db;
client.htmll = require('cheerio');
client.useful = useful;
client.tags = require('html-tags');
let profil = JSON.parse(fs.readFileSync('./profil.json', 'utf8'))
client.profil = profil
client.ayarlar = {
"prefix": "", //prefix
"oauthSecret": "S", //bot secreti
"callbackURL": "https://listdcbotga.glitch.me/callback", //benim sitenin urlsini kendin ile değiş "/callback" kalacak!
"kayıt": "", //onaylandı, reddedildi, başvuru yapıldı falan kayıtların gideceği kanalın ID'ini yazacaksın
"renk": "RANDOM" //embedların rengini burdan alıo can sıkıntısdna yapılmış bişe falan fln
};
client.yetkililer = ["420691365777899530", "685247231385010307"] //tüm yetkililerin ıdleri gelcek array
client.webyetkililer = ["420691365777899530", "685247231385010307"] //web yetkililerin ıdleri gelcek array
client.sunucuyetkililer = ["420691365777899530", "685247231385010307"] //sunucu yetkililerin ıdleri gelcek array
//["id", "id2"]
client.on('ready', async () => {
client.appInfo = await client.fetchApplication();
setInterval( async () => {
client.appInfo = await client.fetchApplication();
}, 60000);
require("./app.js")(client);
client.user.setActivity(`${client.ayarlar.prefix}yardım`, { type:"PLAYING" })
console.log("Aktif!")
});
setInterval(() => {
if (db.has('botlar') && db.has('kbotlar')) {
for (var i = 0; i < Object.keys(db.fetch('kbotlar')).length; i++) {
for (var x = 0; x < Object.keys(db.fetch('botlar')).length; x++) {
var bot = Object.keys(db.fetch('botlar'))[x]
var user = Object.keys(db.fetch('kbotlar'))[i]
if (db.has(`oylar.${bot}.${user}`)) {
setTimeout(() => {
db.delete(`oylar.${bot}.${user}`)
}, require('ms')(`${client.useful.seg(db.fetch(`oylar.${bot}.${user}`), 6)}h`));
}
}
}
}
}, 10000);
const chalk = require('chalk')
client.commands = new Discord.Collection()
client.aliases = new Discord.Collection()
fs.readdir(`./komutlar/`, (err, files) => {
let jsfiles = files.filter(f => f.split(".").pop() === "js")
if(jsfiles.length <= 0) {
console.log("Olamazz! Hiç komut dosyası bulamadım!")
} else {
if (err) {
console.error("Hata! Bir komutun name veya aliases kısmı yok!")
}
console.log(`${jsfiles.length} komut yüklenecek.`)
jsfiles.forEach(f => {
let props = require(`./komutlar/${f}`)
client.commands.set(props.help.name, props)
props.conf.aliases.forEach(alias => {
client.aliases.set(alias, props.help.name)
})
console.log(`Yüklenen komut: ${props.help.name}`)
})
}
});
client.on("message", async message => {
if (message.author.bot) return
if (!message.content.startsWith('!')) return
var command = message.content.split(' ')[0].slice('!'.length)
var args = message.content.split(' ').slice(1)
var cmd = ''
if (client.commands.has(command)) {
var cmd = client.commands.get(command)
} else if (client.aliases.has(command)) {
var cmd = client.commands.get(client.aliases.get(command))
}
if (cmd) {
if (cmd.conf.permLevel === 'ozel') { //o komutu web yetkilileri kullanabsiln sadece diye yaptıgım bişe
if (client.yetkililer.includes(message.author.id) === false) {
const embed = new Discord.RichEmbed()
.setDescription(`Kardeşim sen WebSite yetkilisi değilsin saçma saçma işlerle uğraşma!`)
.setColor(client.ayarlar.renk)
.setTimestamp()
message.channel.send("Yetersiz Yetki.")
return
}
}
if (cmd.conf.permLevel === 1) {
if (!message.member.hasPermission("MANAGE_MESSAGES")) {
const embed = new Discord.RichEmbed()
.setDescription(`Sen önce mesajları yönetmeyi öğren sonra bu komutu kullanırsın.`)
.setColor(client.ayarlar.renk)
.setTimestamp()
message.channel.send("Yetersiz yetki.")
return
}
}
if (cmd.conf.permLevel === 2) {
if (!message.member.hasPermission("KICK_MEMBERS")) {
const embed = new Discord.RichEmbed()
.setDescription(`Üyeleri atma yetkin yok.`)
.setColor(client.ayarlar.renk)
.setTimestamp()
message.channel.send("Üyeleri atma yetkin yok.")
return
}
}
if (cmd.conf.permLevel === 3) {
if (!message.member.hasPermission("ADMINISTRATOR")) {
const embed = new Discord.RichEmbed()
.setDescription(`Yetersiz yetki.`)
.setColor(client.ayarlar.renk)
.setTimestamp()
message.channel.send("Yetersiz yetki.")
return
}
}
if (cmd.conf.permLevel === 4) {
const x = await client.fetchApplication()
var arr = [x.owner.id, '420691365777899530']
if (!arr.includes(message.author.id)) {
const embed = new Discord.RichEmbed()
.setDescription(`Yetkin yetersiz.`)
.setColor(client.ayarlar.renk)
.setTimestamp()
message.channel.send("Yetersiz yetki.")
return
}
}
if (cmd.conf.enabled === false) {
const embed = new Discord.RichEmbed()
.setDescription(`Bu komut devre dışı.`)
.setColor(client.ayarlar.renk)
.setTimestamp()
message.channel.send("Bu komut devre dışı.")
return
}
if(message.channel.type === "dm") {
if (cmd.conf.guildOnly === true) {
const embed = new Discord.RichEmbed()
.setDescription(`Bu komutu özel mesajlarda kullanamazsın.`)
.setColor(client.ayarlar.renk)
.setTimestamp()
message.channel.send("Bu komutu özel mesajlarda kullanamazsın.")
return
}
}
cmd.run(client, message, args)
}
});
client.login("NzA3NDU4NDAzMzQwOTEwNjYz.XrJGAg.r9MkIrx5tThMR4dlAcg4hnclaqE") //tokeni yaz işte
process.env = {}
process.env.TOKEN = "TOKENINIZ BURAYA";
//Loz 'Bey Sunar