@@ -1,9 +1,9 @@
|
||||
import { GuildMember, userMention } from "discord.js"
|
||||
import { embedColor } from "config/options"
|
||||
import { embedColor } from "config/options.js"
|
||||
import { IEvent } from "interfaces"
|
||||
import logToChannel from "utils/functions/logtochannel"
|
||||
import logToChannel from "utils/functions/logtochannel.js"
|
||||
|
||||
export = {
|
||||
export default {
|
||||
name: "logNewJoins",
|
||||
description: "Logs new joins",
|
||||
event: "guildMemberAdd",
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import { ChatInputCommandInteraction, ButtonInteraction } from "discord.js"
|
||||
import color from "utils/functions/colors"
|
||||
import color from "utils/functions/colors.js"
|
||||
import { IEvent } from "interfaces"
|
||||
|
||||
export = {
|
||||
export default {
|
||||
name: "logBtnsCmds",
|
||||
description: "Logs all button and command interactions",
|
||||
event: "interactionCreate",
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import { Message } from "discord.js"
|
||||
import { IEvent } from "interfaces"
|
||||
import env from "utils/Env"
|
||||
import env from "utils/Env.js"
|
||||
|
||||
export = {
|
||||
export default {
|
||||
name: "eval",
|
||||
description: "Evaluate a JavaScript expression",
|
||||
event: "messageCreate",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { IEvent } from "interfaces"
|
||||
import { Message } from "discord.js"
|
||||
|
||||
export = {
|
||||
export default {
|
||||
name: "ur mom",
|
||||
description: "ur moms someone",
|
||||
event: "messageCreate",
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import { IEvent } from "interfaces"
|
||||
import { ExtendedClient as Client } from "utils/Client"
|
||||
import color from "utils/functions/colors"
|
||||
import { ExtendedClient as Client } from "utils/Client.js"
|
||||
import color from "utils/functions/colors.js"
|
||||
|
||||
export = {
|
||||
export default {
|
||||
name: "conolelog",
|
||||
description: "console log",
|
||||
event: "ready",
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import logToChannel from "utils/functions/logtochannel"
|
||||
import logToChannel from "utils/functions/logtochannel.js"
|
||||
import { IEvent } from "interfaces"
|
||||
import { embedColor } from "config/options"
|
||||
import { embedColor } from "config/options.js"
|
||||
|
||||
export = {
|
||||
export default {
|
||||
name: "sendonlinemessage",
|
||||
description: "send an online message",
|
||||
event: "ready",
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
import { guildid } from "config/options"
|
||||
import statuses from "config/statuses"
|
||||
import { guildid } from "config/options.js"
|
||||
import statuses from "config/statuses.js"
|
||||
import { Guild } from "discord.js"
|
||||
import { IEvent } from "interfaces"
|
||||
import { ExtendedClient as Client } from "utils/Client"
|
||||
import { ExtendedClient as Client } from "utils/Client.js"
|
||||
|
||||
export = {
|
||||
export default {
|
||||
name: "status",
|
||||
description: "Sets the status of the bot",
|
||||
event: "ready",
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import { userMention, channelMention, VoiceState } from "discord.js"
|
||||
import { embedColor } from "config/options"
|
||||
import { embedColor } from "config/options.js"
|
||||
import { IEvent } from "interfaces"
|
||||
import logToChannel from "utils/functions/logtochannel"
|
||||
import logToChannel from "utils/functions/logtochannel.js"
|
||||
|
||||
export = {
|
||||
export default {
|
||||
name: "vcJoinLeave",
|
||||
description: "Logs when a user joins or leaves a voice channel.",
|
||||
event: "voiceStateUpdate",
|
||||
|
||||
Reference in New Issue
Block a user