-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
216 lines (168 loc) · 6.73 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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
const Discord = require("discord.js");
const { MessageEmbed, Collection, Client } = require ('discord.js')
const db = require ('quick.db')
const keepAlive = require('./server.js')
keepAlive()
require('discord-reply');
const prefix = 'e!'//CHANGE YOUR PREFIX IF YOU WANT
require("dotenv").config();
const client = new Client({
disableMentions: 'everyone'
});
client.commands = new Collection();
client.aliases = new Collection();
['command'].forEach(handler => {
require(`./handlers/${handler}`)(client);
});
const fs = require("fs");
const { readdirSync } = require("fs");
const { join } = require("path");
client.on('ready', () => {
console.log(`https://discord.com/oauth2/authorize?client_id=${client.user.id}&permissions=8&scope=bot`);
});
// Log the startup + make a status
client.on('ready', () => {
console.log(`[INFO]: Ready on client (${client.user.tag})`);
console.log('-------------------------------------');
client.user.setActivity(`Powered By NeoBot | ${client.users.cache.size} users`, {
type: 'WATCHING'
});
}); //YOUR BOT'S STATUS
//WHEN SOMEONE MESSAGE
client.on('message', async message => {
if (message.author.bot) return;
if (!message.guild) return;
if (!message.content.startsWith(prefix)) return;
if (!message.member)
message.member = await message.guild.fetchMember(message);
const args = message.content
.slice(prefix.length)
.trim()
.split(/ +/g);
const cmd = args.shift().toLowerCase();
if (cmd.length === 0) return;
let command = client.commands.get(cmd);
if (!command) command = client.commands.get(client.aliases.get(cmd));
if (command) command.run(client, message, args, db);
});
// Create the antiswear message event
//SCAM LINK DETECTOR
client.on("message", async (message, guild, channel, member) => {
const { MessageEmbed } = require ('discord.js')
const check = client.emojis.cache.find(x => x.name === "Neo_Warning")
let antilink = await db.get(`antilink_${message.guild.id}`)
if(antilink === "disabled"|| antilink === null) return;
const noWords = JSON.parse(fs.readFileSync("./words/blockedlinks.json"));
const msg = message.content.toLowerCase();
for (let i = 0; i < noWords["blockedlinks"].length; i++) {
// Check the message
if (msg.includes(noWords["blockedlinks"] [i])) {
// Remove message
message.delete().catch(() => null)
message.channel.send(
new MessageEmbed()
.setColor('#00298c')
.setThumbnail(message.author.displayAvatarURL({ dynamic: true }))
.setTitle(`${check} | Scam Link Detected`)
.addFields(
{name:'User', value:`<@${message.author.id}>`, inline:true},
{name: 'ID', value:`${message.author.id}`, inline:true},
{name:'aka', value:`${message.author.username + "#" + message.author.discriminator}` , inline:true}
)
.addField('Reason','Sending scam links which can either be scam or virus')
.setFooter('Powered by NeoBot')
.setTimestamp());
}
}
})
//ANTI SWEAR DETECTORS
client.on("message", async (message, guild, channel, member) => {
const { MessageEmbed } = require ('discord.js')
const db = require ('quick.db')
let antilink = db.get(`swear_${message.guild.id}`)
if(antilink === "disabled"|| antilink === null) return;
const noWords = JSON.parse(fs.readFileSync("./words/blockedwords.json"));
// requesting the file
const msg = message.content.toLowerCase();
for (let i = 0; i < noWords["blockedwords"].length; i++) {
// Check the message
if (msg.includes(noWords["blockedwords"] [i])) {
// Remove message
message.delete().catch(() => null)
message.delete().catch(() => null)
message.channel.send(
new MessageEmbed()
.setDescription(`You cannot swear in this server`)//You can change the sentence if you want
.addFields(
{name:'User', value:`<@${message.author.id}>`, inline:true},
{name: 'ID', value:`${message.author.id}`, inline:true},
{name:'aka', value:`${message.author.username + "#" + message.author.discriminator}` , inline:true}
)
.setColor(`#00298c`)
.setThumbnail(message.author.displayAvatarURL({ dynamic: true }))
.setFooter('Powered by NeoBot')
.setTimestamp()
).then(m => {
m.delete({ timeout:8000 })
})
}
}
})
const { GiveawaysManager } = require("discord-giveaways")
client.giveawaysManager = new GiveawaysManager(client, {
storage: "./give.json",
updateCountdownEvery: 5000,
default: {
botsCanWin: false,
embedColor: "RANDOM",
reaction: "🎉"
}
});
client.on("message", async message => {
const prefixMention = new RegExp(`^<@!?${client.user.id}>( |)$`);
if (message.content.match(prefixMention)) {
return message.lineReply(
new MessageEmbed()
.setTitle(`My prefix is \`${prefix}\``)
.setColor('#00298c')
.setFooter(`Requested by ${message.author.username}`, message.author.displayAvatarURL())
)
}
})
client.on("message", message => {
if(message.content === "e!automeme") {
if (!message.member.hasPermission("ADMINISTRATOR")) {
return message.reply("you don't have permission \n require **ADMINISTRATOR**")
}
message.channel.send("🔄 **| AutoMeme Starting... (`Please wait 20s`)**").then((msg) => {
setTimeout(function(){
msg.edit("🔄 **| AutoMeme Starting... (`Please Wait 10s`)**")
setTimeout(function(){
msg.edit("✅ **| AutoMeme Started**")
}, 10000)
}, 10000)
}) //edit the message to look cool
setInterval(() => {
got("https://www.reddit.com/r/memes/random/.json").then(response => {
const [list] = JSON.parse(response.body);
const [post] = list.data.children;
const permalink = post.data.permalink;
const memeUrl = `https://reddit.com${permalink}`;
const memeImage = post.data.url;
const memeTitle = post.data.title;
const memeUpvotes = post.data.ups;
const memeNumComments = post.data.num_comments;
const embed = new Discord.MessageEmbed()
.setTitle(`${memeTitle}`)
.setURL(`${memeUrl}`)
.setColor("#00298c")
.setImage(memeImage)
.setFooter(`👍: ${memeUpvotes} | 💬: ${memeNumComments}`);
message.channel.send(embed)
})
}, 20000) //I recommend to put it above 20s to not abuse Discord Api lol
}
});
client.login(process.env.TOKEN)// LOGIN BY PUTTING YOUR TOKEN IN ENVIROMENTAL VARIABLES AND NEVER SHARE YOUR BOTS INFORMATION
// CREATED BY WREAKING#5515
//IF YOU ARE USING IT PLEASE MENTION MY NAME OR THE BOTS NAME