diff --git a/events/ready.js b/events/ready.js new file mode 100644 index 0000000..692338a --- /dev/null +++ b/events/ready.js @@ -0,0 +1,11 @@ +const config = require(`../config/bot.json`) + +module.exports = async (client) => { + + //If the bot is ready it sends a message in the console + console.log(`Ready on ${client.guilds.cache.size} servers, for a total of ${client.users.cache.size} users`); + + //Game + client.user.setActivity(config.game) + +}