Updated interfacecs

This commit is contained in:
2024-01-18 15:34:55 +01:00
parent 4cfe877feb
commit 847a8663d8
71 changed files with 207 additions and 79 deletions

View File

@@ -6,7 +6,6 @@ import logToChannel from "utils/functions/logtochannel"
export = {
name: "logNewJoins",
description: "Logs new joins",
type: "event",
event: "guildMemberAdd",
execute(member: GuildMember) {

View File

@@ -5,7 +5,6 @@ import { Event } from "interfaces"
export = {
name: "logBtnsCmds",
description: "Logs all button and command interactions",
type: "event",
event: "interactionCreate",
execute(interaction: ChatInputCommandInteraction | ButtonInteraction) {

View File

@@ -5,7 +5,6 @@ import env from "utils/Env"
export = {
name: "eval",
description: "Evaluate a JavaScript expression",
type: "event",
event: "messageCreate",
disabled: true,

View File

@@ -4,7 +4,6 @@ import { Message } from "discord.js"
export = {
name: "ur mom",
description: "ur moms someone",
type: "event",
event: "messageCreate",
async execute(message: Message) {

View File

@@ -7,7 +7,6 @@ import { SnipeCache } from "typings"
export = {
name: "snipecache",
description: "Logs messages for the snipe command",
type: "event",
event: "messageDelete",
disabled: true,

View File

@@ -5,7 +5,6 @@ import color from "utils/functions/colors"
export = {
name: "conolelog",
description: "console log",
type: "event",
event: "ready",
execute(client: Client) {

View File

@@ -5,7 +5,6 @@ import { color } from "config/options.json"
export = {
name: "sendonlinemessage",
description: "send an online message",
type: "event",
event: "ready",
execute() {

View File

@@ -5,7 +5,6 @@ import { ExtendedClient as Client } from "utils/Client"
export = {
name: "status",
description: "Sets the status of the bot",
type: "event",
event: "ready",
execute(client: Client) {

View File

@@ -6,7 +6,6 @@ import logToChannel from "utils/functions/logtochannel"
export = {
name: "vcJoinLeave",
description: "Logs when a user joins or leaves a voice channel.",
type: "event",
event: "voiceStateUpdate",
execute(oldState: VoiceState, newState: VoiceState) {