AI_botter/events/ready.js

18 lines
450 B
JavaScript
Raw Permalink Normal View History

2024-03-01 11:09:57 +00:00
const Discord = require('discord.js');
const chalk = require('chalk');
module.exports = async (client) => {
await client.user.setPresence({
activities: [
{
name: `Shadow ~ Hosting`,
type: Discord.ActivityType.Watching
}
],
status: 'streaming'
});
console.log(chalk.bold.greenBright(`${client.user.tag} is online and ready to answer your questions!`));
};