-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.js
49 lines (46 loc) · 1.46 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
const { Client, MessageEmbed } = require('discord.js');
const client = new Client();
const events = require('./commands/events');
const greetings = require('./commands/greeting');
const coursesAndBooks = require('./commands/coursesAndBooks');
const help = require('./commands/help');
const github = require('./commands/github');
const social = require('./commands/social');
const bot = require('./commands/bot');
const site = require('./commands/site');
const mentor = require('./commands/mentor/mentor');
const aniversario = require('./commands/aniversario');
const plantoes = require('./commands/plantoes');
require('dotenv/config');
client.on('guildMemberAdd', (member) => {
const channel = member.guild.channels.cache.find(
(ch) => ch.name === 'bem-vindo',
);
if (!channel) return;
const embed = new MessageEmbed()
.setTitle('🎉 Bem Vindo! 🎉')
.setDescription(
`
Seja muito bem vindo ao nosso servidor, ${member}!
Aproveite e dê uma olhada no nosso Github e contribua com nossos projetos. 😄
🔗 http://github.com/perifacode
`,
)
.setFooter('Criado com 💛 pela comunidade perifaCode')
.setColor('#fff200');
channel.send(embed);
});
client.on('message', (msg) => {
greetings(msg, client.user.id);
coursesAndBooks(msg);
help(msg);
github(msg);
social(msg);
bot(msg);
site(msg);
mentor(msg);
events(msg);
aniversario(msg, client.user.id);
plantoes(msg)
});
client.login(process.env.TOKEN_DISCORD);