Removed another command

This commit is contained in:
2025-03-08 18:58:53 +01:00
parent c8169f8763
commit 80b1b230b1
2 changed files with 0 additions and 46 deletions

View File

@@ -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

View File

@@ -14,8 +14,6 @@ const moderationLogChannel = "1193329771795447818"
const devLogChannel = "1193688673632391280" const devLogChannel = "1193688673632391280"
const waitingListChannel = "1145773618291298384" const waitingListChannel = "1145773618291298384"
const waitingListMessage = "1146027645415473193" const waitingListMessage = "1146027645415473193"
const instructionsgif =
"https =//cdn.discordapp.com/attachments/838716950723952640/1188211176300089384/4DMu513uNxbM.gif?ex=6599b2e4&is=65873de4&hm=e727c7a39aacbc47d6a5453f4b5f792a45679983c30d662cd258a311381b6df0&"
export { export {
applicationsChannel, applicationsChannel,
@@ -28,7 +26,6 @@ export {
guildLogChannel, guildLogChannel,
hypixelGuildID, hypixelGuildID,
inactivityLogChannel, inactivityLogChannel,
instructionsgif,
moderationLogChannel, moderationLogChannel,
onlineLogChannel, onlineLogChannel,
staffApplicationsChannel, staffApplicationsChannel,