Unit_AI/events/ready.js

18 lines
448 B
JavaScript
Raw Normal View History

2024-06-01 21:24:36 +01:00
const Discord = require('discord.js');
const chalk = require('chalk');
module.exports = async (client) => {
await client.user.setPresence({
activities: [
{
2024-06-01 21:28:07 +01:00
name: `Sleepless UNIT`,
2024-06-01 21:24:36 +01:00
type: Discord.ActivityType.Watching
}
],
status: 'streaming'
});
console.log(chalk.bold.greenBright(`${client.user.tag} is online and ready to answer your questions!`));
};