Bot-2.0/events/ready.js

12 lines
353 B
JavaScript
Raw Normal View History

2024-05-23 09:22:31 +00:00
const { Events } = require('discord.js');
const { ActivityType } = require('discord.js');
2024-05-23 09:22:31 +00:00
module.exports = {
name: Events.ClientReady,
once: true,
execute(client) {
console.log(`Ready! Logged in as ${client.user.tag}`);
2024-06-08 08:33:57 +00:00
client.user.setActivity('kry008.xyz/bot/i | To see how to support type /supportbot', { type: ActivityType.PLAYING });
2024-05-23 09:22:31 +00:00
},
};