-
Notifications
You must be signed in to change notification settings - Fork 1
/
bot.js
187 lines (156 loc) · 5.63 KB
/
bot.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
184
185
186
187
const Discord = require("discord.js")
const bot = new Discord.Client()
const config = require("./config.json")
const fs = require("fs")
bot.commands = new Discord.Collection()
bot.aliases = new Discord.Collection()
const falouRecentemente = new Set()
const DBL = require("dblapi.js")
const dbl = new DBL(
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjcyNTMxOTg1MDgwODk2NzE5OCIsImJvdCI6dHJ1ZSwiaWF0IjoxNTk1ODE4NzY1fQ.jgrFRj0rlpazJt2f7-t3zZbFkJ81bzoe58mQMls50Ow",
{ statsInterval: 18000000 },
bot
)
let loading = "<a:loading:722456385098481735>"
// Optional events
dbl.on("error", (e) => {
console.log(`Oops! ${e}`)
})
fs.readdir("./commands/", (err, files) => {
if (err) console.log(err)
let jsfile = files.filter((f) => f.split(".").pop() === "js") // Pega todos os nomes dos comandos da pasta "./commands/" e remove o '.js'
if (jsfile.length <= 0) {
return console.log(
"[STARTING] ⇥ ❌ Não foi possível encontrar comandos!"
)
}
jsfile.forEach((f, i) => {
let pull = require(`./commands/${f}`) // Importa cada arquivo
bot.commands.set(pull.config.name, pull) // Coloca o nome dele na Collection
console.log(
`\n■▶ [STARTING] ⇥ Comando '${pull.config.name}' inicializado com sucesso`
)
pull.config.aliases.forEach((alias) => {
bot.aliases.set(alias, pull.config.name) // Coloca a variação dele na Collection
console.log(`↳ Variação '${alias}' adicionada`)
})
})
})
bot.once("ready", () => {
let mensagem = `■ Bot foi iniciado em ${bot.guilds.cache.size} servidor(es) ■`
let barra = ""
for (let i = 0; i < mensagem.length; i++) {
barra = barra + "■"
}
console.log(barra)
console.log(mensagem)
console.log(barra + "\n\n")
const log = bot.guilds.cache
.get("725691740538929225")
.channels.cache.get("725691977311453214")
let reload = log
.send(`${loading} Reiniciando...`)
.then(async (m1) => {
await m1
.edit(`✅ Reiniciado! <@580722395766194176>`)
.catch(() => console.log(`↳ ⚠️ Erro ao editar a mensagem`))
})
.catch(() => console.log(`↳ ⚠️ Erro ao editar a mensagem`))
let starting = log
.send(`${loading}`)
.then(async (m2) => {
await m2
.edit(
`🔽╰(\\*°▽°\\*)╯🔽\n\\✅ Bot iniciado em ${bot.guilds.cache.size} servidor(es)`
)
.catch(() => console.log(`↳ ⚠️ Erro ao editar a mensagem`))
})
.catch(() => console.log(`↳ ⚠️ Erro ao editar a mensagem`))
bot.user.setActivity(`${config.prefix}help | Created by @igor.roc`, {
type: "WATCHING",
})
let commands = bot.guilds.cache
.get("725691740538929225")
.channels.cache.get("842347902726176768")
commands.setName(`🔧▏ Commands: ${bot.commands.size}`)
let servers = bot.guilds.cache
.get("725691740538929225")
.channels.cache.get("842346193787027496")
servers.setName(`🤖▏ Servers: ${bot.guilds.cache.size}`)
})
bot.once("guildCreate", async (server) => {
const log = bot.guilds.cache
.get("725691740538929225")
.channels.cache.get("725691977311453214")
console.log(
`\n■▶ [LOGS] ✅ ⇥ Bot adicionado ao servidor '${server.name}'`
)
await log.send(
`\\▶ [LOGS] ✅ ⇥ Bot adicionado ao servidor \` ${server.name} \`\n> Total: ${bot.guilds.cache.size}\n`
)
let servers = bot.guilds.cache
.get("725691740538929225")
.channels.cache.get("842346193787027496")
servers.setName(`🤖▏ Servers: ${bot.guilds.cache.size}`)
})
bot.once("guildDelete", async (server) => {
const log = bot.guilds.cache
.get("725691740538929225")
.channels.cache.get("725691977311453214")
console.log(
`\n■▶ [LOGS] ❌ ⇥ Bot removido do servidor '${server.name}'`
)
await log.send(
`\\▶ [LOGS] ❌ ⇥ Bot removido do servidor \` ${server.name} \`\n> Total: ${bot.guilds.cache.size}\n`
)
let servers = bot.guilds.cache
.get("725691740538929225")
.channels.cache.get("842346193787027496")
servers.setName(`🤖▏ Servers: ${bot.guilds.cache.size}`)
})
bot.on("message", async (message) => {
const log = bot.guilds.cache
.get("725691740538929225")
.channels.cache.get("725691977311453214")
if (message.author.bot) return // Se o autor foi um bot, faz nada
if (message.channel.type == "dm")
return message.channel.send("I don't answer here...") // Se a mensagem foi enviada por dm, não continua o código
let prefix = config.prefix
let messageArray = message.content.split(" ")
let comando = messageArray[0].slice(prefix.length)
let args = messageArray.slice(1)
if (!message.content.startsWith(prefix)) return // Valida o prefix do comando
let m = await message.channel.send(loading)
if (falouRecentemente.has(message.author.id)) {
await m
.edit("Wait 5 seconds until sending another command.")
.then(async (n) => {
await n
.delete({ timeout: 3000 })
.catch(() => console.log(`↳ ⚠️ Erro ao deletar a mensagem`))
})
} else {
await m.delete()
let commandfile =
bot.commands.get(comando) ||
bot.commands.get(bot.aliases.get(comando)) // Pega o comando escrito no arquivo de comandos
if (commandfile) commandfile.run(bot, message, args)
// Verifica se o comando existe
else {
message.channel.send(
`\`❌\` Command \`${comando}\` not found.\nUse \` ${config.prefix}help \` to see commands.`
)
console.log(`\n❌ Comando '${comando}' não encontrado`)
log.send(
`\\▶ [LOGS] ⇥ \`❌\` Comando \` ${comando} \` não encontrado pelo usuário \` ${message.author.username} \` no server \` ${message.guild.name} \`\n`
)
}
if (message.author.id != "580722395766194176") { // Adiciona um timer para todos os usuarios, exceto eu!
falouRecentemente.add(message.author.id)
setTimeout(() => {
falouRecentemente.delete(message.author.id)
}, 5000)
}
}
})
bot.login(config.token)