AI_botter/events/ready.js
DeathbotGaming 961f8b00d1
Ai-Bot
V1.0.0
2024-03-01 02:09:57 -09:00

18 lines
No EOL
450 B
JavaScript

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!`));
};