-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
74 lines (65 loc) · 2.39 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
const Discord = require("discord.js");
const fs = require("fs");
const console = require("console");
const config = require('./config.json');
const bot = new Discord.Client({disableEveryone: true})
var antiguard = config.antiguard;
var id = config.id;
bot.on("ready", async () => {
console.log(`Você logou como ${bot.user.username}`)
setTimeout( () => {
console.clear();
console.log("Rodando o antiGuard...");
}, 2000)
})
bot.on("message", async message =>{
if (message.channel.id === '732085620436107365')
{
if(message.author.id == id)
{
const args = message.content.slice(config.prefix.length).trim().split(/ +/g);
const comando = args.shift().toLowerCase();
if(comando === "antiguard" && antiguard == true)
{
antiguard = false;
let status = new Discord.RichEmbed()
.setColor('#b30059')
.setTitle('O antiraid foi desligado!')
.setDescription('status');
message.channel.send(status);
return;
}
if(comando === "antiguard" && antiguard == false)
{
antiguard = true;
let status = new Discord.RichEmbed()
.setColor('#00e600')
.setTitle('O antiraid foi ligado!')
.setDescription('status');
message.channel.send(status);
return;
}
}
if(message.author.id =='555955826880413696')
{
let palavrões = ['EPIC GUARD', 'stop there']
const regex = new RegExp(`(${palavrões.join('|')})`, 'ig')
if(regex.test(message.content))
{
if(antiguard == true)
{
message.channel.send("!kick 555955826880413696");
message.channel.send("?kick 555955826880413696");
message.channel.send(";kick 555955826880413696");
setTimeout( () => {
message.channel.send("https://discord.com/oauth2/authorize?client_id=555955826880413696&permissions=8&scope=bot");
}, 3000);
setTimeout( () => {
message.channel.send("@here @everyone");
}, 4000);
}
}
}
}
});
bot.login(config.token);