1
1
const { Events, Collection } = require ( "discord.js" ) ;
2
-
3
2
module . exports = {
4
3
name : Events . InteractionCreate ,
5
4
async execute ( interaction ) {
6
5
// Slash Command Handling
7
6
if ( interaction . isChatInputCommand ( ) ) {
8
- const command = interaction . client . commands . get ( interaction . commandName ) ;
7
+ const command = interaction . client . slashCommands . get ( interaction . commandName ) ;
9
8
10
9
if ( ! command ) {
11
- console . error ( `[x] No command matching ${ interaction . commandName } was found.` ) ;
12
- return ;
10
+ console . error ( `[x] No slash command matching ${ interaction . commandName } was found.` ) ;
11
+ return await interaction . reply ( { content : "That command couldn't be found." , ephemeral : true } ) ;
13
12
}
14
13
15
14
try {
16
15
await command . execute ( interaction ) ;
16
+ await handleCooldown ( interaction , command ) ;
17
17
} catch ( error ) {
18
- console . error ( error ) ;
19
- // Prevent multiple replies or follow-ups
20
- if ( interaction . replied || interaction . deferred ) {
21
- await interaction . followUp ( {
22
- content : "[!] There was an error while executing this command!" ,
23
- ephemeral : true ,
24
- } ) ;
25
- } else {
26
- await interaction . reply ( {
27
- content : "[!] There was an error while executing this command!" ,
28
- ephemeral : true ,
29
- } ) ;
30
- }
18
+ console . error ( `Error executing slash command ${ interaction . commandName } :` , error ) ;
19
+ await handleCommandError ( interaction , error ) ;
31
20
}
32
-
33
- // Call the cooldown handler after ensuring only one reply
34
- await handleCooldown ( interaction , command ) ;
35
21
}
36
22
} ,
37
23
} ;
38
24
39
25
// Prefix Command Handling
40
- module . exports . messageHandler = async ( message ) => {
41
- const prefix = "!" ; // Set your desired prefix
42
- if ( ! message . content . startsWith ( prefix ) || message . author . bot ) return ;
26
+ module . exports . messageHandler = async ( message , client ) => {
27
+ const { prefix } = require ( '../functions/ prefix' ) ;
28
+ if ( ! message . content . startsWith ( prefix ) || message . author . bot || ! message . guild ) return ;
43
29
44
30
const args = message . content . slice ( prefix . length ) . trim ( ) . split ( / + / ) ;
45
31
const commandName = args . shift ( ) . toLowerCase ( ) ;
46
- const command = message . client . commands . get ( commandName ) ;
32
+ const command = client . prefixCommands . get ( commandName ) || client . prefixCommands . find ( cmd => cmd . aliases && cmd . aliases . includes ( commandName ) ) ;
47
33
48
34
if ( ! command ) {
49
- console . error ( `[x] No command matching ${ commandName } was found.` ) ;
35
+ console . error ( `[x] No prefix command matching ${ commandName } was found.` ) ;
50
36
return ;
51
37
}
52
38
53
39
try {
54
- await command . execute ( message , args ) ;
40
+ await command . execute ( message , args , client ) ;
41
+ await handleCooldown ( message , command ) ;
55
42
} catch ( error ) {
56
- console . error ( error ) ;
57
- message . reply ( "[!] There was an error while executing this command!" ) ;
43
+ console . error ( `Error executing prefix command ${ commandName } :` , error ) ;
44
+ await message . reply ( "[!] There was an error while executing this command!" ) ;
58
45
}
59
-
60
- // Call the cooldown handler
61
- await handleCooldown ( message , command ) ;
62
46
} ;
63
47
48
+ // Utility function for handling errors in commands
49
+ async function handleCommandError ( interaction , error ) {
50
+ const errorMessage = "[!] There was an error while executing this command!" ;
51
+ try {
52
+ if ( interaction . replied || interaction . deferred ) {
53
+ await interaction . followUp ( {
54
+ content : errorMessage ,
55
+ ephemeral : true ,
56
+ } ) ;
57
+ } else {
58
+ await interaction . reply ( {
59
+ content : errorMessage ,
60
+ ephemeral : true ,
61
+ } ) ;
62
+ }
63
+ } catch ( replyError ) {
64
+ console . error ( `Error sending error message for ${ interaction . commandName } :` , replyError ) ;
65
+ }
66
+ }
67
+
64
68
// Cooldown Logic
65
69
async function handleCooldown ( source , command ) {
66
70
const { client, user } = source ;
67
71
const { cooldowns } = client ;
68
72
69
- if ( ! cooldowns . has ( command . name ) ) {
70
- cooldowns . set ( command . name , new Collection ( ) ) ;
73
+ // Determine the command name based on whether it's a slash or prefix command
74
+ const commandName = command . data ? command . data . name : command . name ;
75
+
76
+ if ( ! cooldowns . has ( commandName ) ) {
77
+ cooldowns . set ( commandName , new Collection ( ) ) ;
71
78
}
72
79
73
80
const now = Date . now ( ) ;
74
- const timestamps = cooldowns . get ( command . name ) ;
81
+ const timestamps = cooldowns . get ( commandName ) ;
75
82
const defaultCooldownDuration = 3 ; // default cooldown in seconds
76
83
const cooldownAmount = ( command . cooldown ?? defaultCooldownDuration ) * 1000 ;
77
84
@@ -80,20 +87,21 @@ async function handleCooldown(source, command) {
80
87
if ( now < expirationTime ) {
81
88
const expiredTimestamp = Math . round ( expirationTime / 1000 ) ;
82
89
83
- // Check if it's a Chat Input Command or a message command
84
- if ( ! source . replied && ! source . deferred ) {
90
+ try {
85
91
if ( source . isChatInputCommand && typeof source . isChatInputCommand === "function" ) {
86
- // Chat input command (slash command)
92
+ // Slash command
87
93
await source . reply ( {
88
- content : `Please wait, you are on a cooldown for \`${ command . name } \`. You can use it again <t:${ expiredTimestamp } :R>.` ,
94
+ content : `Please wait, you are on a cooldown for \`${ commandName } \`. You can use it again <t:${ expiredTimestamp } :R>.` ,
89
95
ephemeral : true ,
90
96
} ) ;
91
97
} else {
92
- // Prefix command (message command)
98
+ // Prefix command
93
99
await source . channel . send ( {
94
- content : `Please wait, you are on a cooldown for \`${ command . name } \`. You can use it again <t:${ expiredTimestamp } :R>.` ,
100
+ content : `Please wait, you are on a cooldown for \`${ commandName } \`. You can use it again <t:${ expiredTimestamp } :R>.` ,
95
101
} ) ;
96
102
}
103
+ } catch ( replyError ) {
104
+ console . error ( `Error applying cooldown for ${ commandName } to ${ user . tag } :` , replyError ) ;
97
105
}
98
106
99
107
return ;
@@ -102,4 +110,4 @@ async function handleCooldown(source, command) {
102
110
103
111
timestamps . set ( user . id , now ) ;
104
112
setTimeout ( ( ) => timestamps . delete ( user . id ) , cooldownAmount ) ;
105
- }
113
+ }
0 commit comments