const { Client, Intents, Collection, MessageEmbed, MessageActionRow, MessageButton, DiscordAPIError } = require('discord.js'); //Import the most important functions from discord.js const Discord = require('discord.js'); //v12.5.3 require('discord-inline-reply'); //Import inline replies const client = new Client(); //New Discord client const keepAlive = require(`./server.js`); const botconfig = process.env['TOKEN'] //Login info for the bot, you will have to provide your own info there client.on("ready", () => { console.log(`The bot is online!`) client.user.setActivity(`${client.guilds.cache.size} servers`, { type: "WATCHING" }); }); client.on("guildCreate", function(guild){ client.user.setActivity(`${client.guilds.cache.size} servers`, { type: "WATCHING" }); }); client.on("message", async (message) => { const DetectMessageType = require('./functions/!DetectMessageType.js') const ChatAI = require('./functions/cleverbot.js') const AI = require('./functions/AI.js') const Help = require('./functions/Help.js') if(message.author.id === client.user.id){ return; //Stop the event if a message is sent by the bot. } if (message.content.includes("@everyone")) { return; //Stop the event if a message includes @everyone ping. } if (message.content.includes("@here")) { return; //Stop the event if a message includes @here ping. } if (message.content.includes("!shelp")){ return Help(message, message.author, message.guild, client) } if(!message.guild){ return DetectMessageType(message, message.author, message.guild, client) } if (message.mentions.has(client.user)) { //Continue if a message mentioned the bot. return DetectMessageType(message, message.author, message.guild, client) } }); client.login(botconfig) keepAlive();