module.exports = (client) => { console.log( `Ready to serve in ${client.channels.cache.size} channels on ${client.guilds.cache.size} servers, for a total of ${client.users.cache.size} users.` ); const activity = "Bot made by rafacs-"; client.user.setActivity(activity, { type: "WATCHING" }); client.user.setStatus('dnd');};