first commit

This commit is contained in:
2025-06-21 15:13:58 -05:00
commit 07f75bbd93
37 changed files with 3125 additions and 0 deletions

10
events/ready/ready.js Normal file
View File

@ -0,0 +1,10 @@
const { Events, PresenceUpdateStatus } = require('discord.js')
module.exports = {
name: Events.ClientReady,
once: true,
execute(client) {
console.log(`Ready! Logged in as ${client.user.tag}`);
client.user.setStatus(PresenceUpdateStatus.Online)
},
};