generated from ShadowVR/AI_botter
18 lines
No EOL
448 B
JavaScript
18 lines
No EOL
448 B
JavaScript
const Discord = require('discord.js');
|
|
const chalk = require('chalk');
|
|
|
|
module.exports = async (client) => {
|
|
|
|
await client.user.setPresence({
|
|
activities: [
|
|
{
|
|
name: `Sleepless UNIT`,
|
|
type: Discord.ActivityType.Watching
|
|
}
|
|
],
|
|
status: 'streaming'
|
|
});
|
|
|
|
console.log(chalk.bold.greenBright(`${client.user.tag} is online and ready to answer your questions!`));
|
|
|
|
}; |