diff --git a/src/commands/instructions.ts b/src/commands/instructions.ts deleted file mode 100644 index c04d580..0000000 --- a/src/commands/instructions.ts +++ /dev/null @@ -1,43 +0,0 @@ -import { InteractionContextType, PermissionFlagsBits, SlashCommandBuilder } from "discord.js" -import { devMessage, embedColor, instructionsgif } from "~/config/options" -import { ICommand } from "~/typings" - -export default { - name: "instructions", - description: "Instructions for verification", - dev: false, - public: false, - - data: new SlashCommandBuilder() - .setName("instructions") - .setDescription("Instructions for verification") - .setDefaultMemberPermissions(PermissionFlagsBits.Administrator) - .setContexts(InteractionContextType.Guild), - - async execute({ interaction }) { - await interaction.reply({ - embeds: [{ - title: "Verification", - description: ` - - Log onto hypixel. - - Right click with the head in your hotbar. - - Click on the social media icon. - - Click on the discord icon. - - Type your username in the chat and press enter. - - Run the \`/verify\` command in this channel. - `.removeIndents(), - thumbnail: { - url: interaction.guild?.iconURL() || "" - }, - color: embedColor, - footer: { - text: interaction.guild!.name + " | " + devMessage, - icon_url: interaction.guild!.iconURL() || undefined - }, - image: { - url: instructionsgif - } - }] - }) - } -} as ICommand diff --git a/src/config/options.ts b/src/config/options.ts index 1e310e6..a5f028b 100644 --- a/src/config/options.ts +++ b/src/config/options.ts @@ -14,8 +14,6 @@ const moderationLogChannel = "1193329771795447818" const devLogChannel = "1193688673632391280" const waitingListChannel = "1145773618291298384" const waitingListMessage = "1146027645415473193" -const instructionsgif = - "https =//cdn.discordapp.com/attachments/838716950723952640/1188211176300089384/4DMu513uNxbM.gif?ex=6599b2e4&is=65873de4&hm=e727c7a39aacbc47d6a5453f4b5f792a45679983c30d662cd258a311381b6df0&" export { applicationsChannel, @@ -28,7 +26,6 @@ export { guildLogChannel, hypixelGuildID, inactivityLogChannel, - instructionsgif, moderationLogChannel, onlineLogChannel, staffApplicationsChannel,