Added Warn and Ban Commands, Added Logging, and Much More

This commit is contained in:
Ahmad 2025-02-23 21:39:49 -05:00
parent d89de72e08
commit 86adac3f08
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
33 changed files with 2200 additions and 204 deletions

9
src/events/ready.ts Normal file
View file

@ -0,0 +1,9 @@
import { Client, Events } from 'discord.js';
export default {
name: Events.ClientReady,
once: true,
execute: async (client: Client) => {
console.log(`Ready! Logged in as ${client.user?.tag}`);
},
};