File size: 943 Bytes
e5c9966 94473c9 e5c9966 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | const { ActivityType } = require('discord.js');
module.exports = {
name: 'clientReady',
once: true,
execute(client) {
const sessionId = Math.random().toString(36).substring(7).toUpperCase();
console.log(`\nββββββββββββββββββββββββββββββββββββββββββββββββ`);
console.log(` π£ WSB β Wyvern Softworks Bot [ID: ${sessionId}]`);
console.log(` β
Logged in as ${client.user.tag}`);
console.log(` π Serving ${client.guilds.cache.size} guild(s)`);
console.log(`ββββββββββββββββββββββββββββββββββββββββββββββββ\n`);
client.user.setPresence({
activities: [{ name: 'Wyvern Softworks', type: ActivityType.Watching }],
status: 'dnd',
});
},
};
|