From 79b65e43e54c6b1b732263e3af28b067aaf07d4d Mon Sep 17 00:00:00 2001 From: Loic Bersier Date: Tue, 18 Sep 2018 21:33:52 +0200 Subject: [PATCH] Reverted back --- events/guildCreate.js | 12 -------- events/guildDelete.js | 12 -------- events/message.js | 15 ---------- events/ready.js | 12 -------- index.js | 67 +++++++++++++++++++++++++++++++------------ 5 files changed, 48 insertions(+), 70 deletions(-) delete mode 100644 events/guildCreate.js delete mode 100644 events/guildDelete.js delete mode 100644 events/message.js delete mode 100644 events/ready.js diff --git a/events/guildCreate.js b/events/guildCreate.js deleted file mode 100644 index d0c5f1e..0000000 --- a/events/guildCreate.js +++ /dev/null @@ -1,12 +0,0 @@ -module.exports = (client) => { - console.log(`${guild.name}\n${guild.memberCount} users\nOwner: ${guild.owner}`); - const channel = client.channels.get(statsChannel); - const addEmbed = { - color: 0x008000, - title: 'Someone added the bot! :D YAY', - description: `${guild.name}\n${guild.memberCount} users\nOwner: ${guild.owner}`, - timestamp: new Date(), - }; - - channel.send({ embed: addEmbed }); -}; \ No newline at end of file diff --git a/events/guildDelete.js b/events/guildDelete.js deleted file mode 100644 index 254419f..0000000 --- a/events/guildDelete.js +++ /dev/null @@ -1,12 +0,0 @@ -module.exports = (client) => { - console.log(`***BOT KICKED***\n${guild.name}\n${guild.memberCount} users\nOwner: ${guild.owner}\n***BOT KICKED***`); - const channel = client.channels.get(statsChannel); - const kickEmbed = { - color: 0xFF0000, - title: 'Someone removed the bot :(', - description: `${guild.name}\n${guild.memberCount} users\nOwner: ${guild.owner}`, - timestamp: new Date(), - }; - - channel.send({ embed: kickEmbed }); -}; \ No newline at end of file diff --git a/events/message.js b/events/message.js deleted file mode 100644 index 490d52c..0000000 --- a/events/message.js +++ /dev/null @@ -1,15 +0,0 @@ -const responseObject = require("../reply.json"); -const { Permissions } = require('discord.js'); -const flags = [ - 'SEND_MESSAGES' -]; -const permissions = new Permissions(flags); - -module.exports = (client, message) => { - // Auto respond to messages - let message_content = message.content.toLowerCase(); - if(responseObject[message_content]) { - message.channel.send(responseObject[message_content]); - }; - -} diff --git a/events/ready.js b/events/ready.js deleted file mode 100644 index 88ecc90..0000000 --- a/events/ready.js +++ /dev/null @@ -1,12 +0,0 @@ -module.exports = (client) => { - const { botID, statsChannel } = require('../config.json'); - // Send stats to the console - console.log(`Logged in as ${client.user.tag}! (${client.user.id})`); - console.log(`Ready to serve in ${client.channels.size} channels on ${client.guilds.size} servers, for a total of ${client.users.size} users. ${client.readyAt}`); - // Send stats to the "stats" channel in the support server if its not the test bot - if (client.user.id == botID) { - const channel = client.channels.get(statsChannel); - channel.send(`Ready to serve in ${client.channels.size} channels on ${client.guilds.size} servers, for a total of ${client.users.size} users. ${client.readyAt}`); - } - client.user.setActivity('"haha help" or "@me help" for help'); -} \ No newline at end of file diff --git a/index.js b/index.js index ae4bd1d..8009734 100644 --- a/index.js +++ b/index.js @@ -1,6 +1,7 @@ -const { CommandoClient, Command } = require('discord.js-commando'); +const { CommandoClient } = require('discord.js-commando'); const path = require('path'); -const { token, prefix, ownerID, supportServer } = require('./config.json'); +const { token, prefix, botID, statsChannel, ownerID, supportServer } = require('./config.json'); +const responseObject = require("./reply.json"); const fs = require("fs"); // Prefix and ownerID and invite to support server @@ -23,24 +24,52 @@ client.registry .registerDefaultGroups() .registerDefaultCommands() .registerCommandsIn(path.join(__dirname, 'commands')); +// Ready messages + client.on('ready', () => { +// Send stats to the console + console.log(`Logged in as ${client.user.tag}! (${client.user.id})`); + console.log(`Ready to serve in ${client.channels.size} channels on ${client.guilds.size} servers, for a total of ${client.users.size} users. ${client.readyAt}`); +// Send stats to the "stats" channel in the support server if its not the test bot + if (client.user.id == botID) { + const channel = client.channels.get(statsChannel); + channel.send(`Ready to serve in ${client.channels.size} channels on ${client.guilds.size} servers, for a total of ${client.users.size} users. ${client.readyAt}`); + } + client.user.setActivity('"haha help" or "@me help" for help'); +}); +// When bot join a guild send embeds with details about it. + client.on("guildCreate", guild => { + console.log(`${guild.name}\n${guild.memberCount} users\nOwner: ${guild.owner}`); + const channel = client.channels.get(statsChannel); + const addEmbed = { + color: 0x008000, + title: 'Someone added the bot! :D YAY', + description: `${guild.name}\n${guild.memberCount} users\nOwner: ${guild.owner}`, + timestamp: new Date(), + }; + + channel.send({ embed: addEmbed }); + }) +// When bot get kicked from a guild send embeds with details about it. + client.on("guildDelete", guild => { + console.log(`***BOT KICKED***\n${guild.name}\n${guild.memberCount} users\nOwner: ${guild.owner}\n***BOT KICKED***`); + const channel = client.channels.get(statsChannel); + const kickEmbed = { + color: 0xFF0000, + title: 'Someone removed the bot :(', + description: `${guild.name}\n${guild.memberCount} users\nOwner: ${guild.owner}`, + timestamp: new Date(), + }; + + channel.send({ embed: kickEmbed }); + }) -fs.readdir("./events/", (err, files) => { - if (err) return console.error(err); - files.forEach(file => { - // If the file is not a JS file, ignore it (thanks, Apple) - if (!file.endsWith(".js")) return; - // Load the event file itself - const event = require(`./events/${file}`); - // Get just the event name from the file name - let eventName = file.split(".")[0]; - // super-secret recipe to call events with all their proper arguments *after* the `client` var. - // without going into too many details, this means each event will be called with the client argument, - // followed by its "normal" arguments, like message, member, etc etc. - // This line is awesome by the way. Just sayin'. - client.on(eventName, event.bind(null, client)); - delete require.cache[require.resolve(`./events/${file}`)]; - }); - }); +// Auto respond to messages + client.on("message", (message) => { + let message_content = message.content.toLowerCase(); + if(responseObject[message_content]) { + message.channel.send(responseObject[message_content]); + } + }); client.on('error', console.error);