-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
115 lines (98 loc) · 2.7 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
const config = require("./config");
const runServer = require("./server");
const { Client, Intents } = require("discord.js");
const client = new Client({
intents: [
Intents.FLAGS.DIRECT_MESSAGES,
Intents.FLAGS.GUILDS,
Intents.FLAGS.GUILD_MEMBERS,
Intents.FLAGS.GUILD_MESSAGES,
Intents.FLAGS.GUILD_MESSAGE_REACTIONS
],
});
let interval = new Set();
const _Leveling = require("discord-leveling-firebase");
const Leveling = new _Leveling(client, config.firebase_config);
const { help } = require("./commands/Classes/Utils");
let countCommands = {
avatar: 0,
bitcoinprice: 0,
blackjack: 0,
botinfo: 0,
countcommands: 0,
discord: 0,
help: 0,
ping: 0,
serverinfo: 0,
// LEVELING E ECONOMIA
coinsranking: 0,
daily: 0,
disablelevelingchannel: 0,
monthly: 0,
profile: 0,
profilecard: 0,
setlevelingchannel: 0,
xpranking: 0,
weekly: 0,
// ENTRETENIMENTO
avatar2pixel: 0,
cookie: 0,
jokenpo: 0,
rndnote: 0,
snake: 0,
word2ascii: 0
};
client.on("ready", () => {
let word = "servidores";
[0, 1].includes(client.guilds.cache.size) ? word = "servidor" : word = "servidores";
client.user.setPresence({
status: "online", // dnd, idle, online, invisible
activities: [{
name: `${config.prefix} help | ${client.guilds.cache.size} ${word}`,
type: "PLAYING"
}]
});
const commands = [
{
name: 'help',
description: 'Comandos disponíveis no bot.'
},
];
client.guilds.cache.forEach(guild => {
guild.commands.set(commands)
.catch((err) => {
if (err.code === 50001) {
console.log(`Problema de permissão no servidor "${guild.name}". (${err.code})`)
}
});
});
console.log(`Conectado como: ${client.user.tag}.`);
});
client.on('interactionCreate', interaction => {
if (!interaction.isCommand()) return;
const { commandName } = interaction;
if (commandName === 'help') {
interaction.reply("Aqui estão os comandos disponíveis do bot.")
.then(() => {
help(interaction);
});
}
});
client.on("messageCreate", async (message) => {
if (message.guild === null || message.guild === undefined
|| message.author.id == client.user.id) {
return;
}
if (!(interval.has(`${message.guild.id}${message.author.id}`))
&& message.content.startsWith(config.prefix)) {
Leveling.leveling(message);
interval.add(message.guild.id.concat(message.author.id));
setTimeout(() => interval.delete(message.guild.id.concat(message.author.id)), 5000);
}
if (message.content.startsWith(config.prefix)) {
const command = require("./commands/command.js");
command(client, message, countCommands, Leveling);
}
});
client.login(config.token);
runServer();