You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: `Displays how to add ${client.user.username} to your amazing server.`,
59
+
value: 'howtoaddbot'
60
+
},
61
+
62
+
{
63
+
label: '• Feedback',
64
+
description: `Displays how to contribute to the development of ${client.user.username} by giving feedback.`,
65
+
value: 'feedback'
66
+
},
67
+
68
+
{
69
+
label: '• Commands Help',
70
+
description: 'Navigate to the Commands help page.',
71
+
value: 'commands',
72
+
},
73
+
),
74
+
);
75
+
76
+
constembed=newEmbedBuilder()
77
+
.setColor(client.config.embedColor)
78
+
.setTitle(`${client.user.username} Help Center ${client.config.arrowEmoji}`)
79
+
.setAuthor({name: `🚑 Help Command ${client.config.devBy}`})
80
+
.setFooter({text: `🚑 ${client.user.username}'s help center`})
81
+
.setThumbnail(client.user.avatarURL())
82
+
.addFields({name: `• Commands Help`,value: `> Get all **Commands** (**${client.commands.size}** slash & **${client.pcommands.size}** prefix) ${client.user.username} looks over!`})
83
+
.addFields({name: "• How to add Bot",value: `> Quick guide on how to add our **${client.user.username}** \n> to your server.`})
84
+
.addFields({name: "• Feedback",value: "> How to send us feedback and suggestions."})
85
+
.addFields({name: "• Exclusive Functionality",value: `> Guide on how to receive permission to \n> use exclusive functionality (${client.user.username} Beta version).`})
Copy file name to clipboardexpand all lines: src/events/interactionCreate.js
-69
Original file line number
Diff line number
Diff line change
@@ -35,75 +35,6 @@ module.exports = {
35
35
36
36
console.error(`${color.red}[${getTimestamp()}] [INTERACTION_CREATE] Error while executing command. \n${color.red}[${getTimestamp()}] [INTERACTION_CREATE] Please check you are using the correct execute method: "async execute(interaction, client)":`,error);
0 commit comments