Signed-off-by: Taken <taken@mairimashita.org>
This commit is contained in:
2024-04-12 15:18:23 +02:00
parent c5ccf8fc58
commit 439a0bbca6
10 changed files with 1186 additions and 1186 deletions

View File

@@ -1,59 +1,59 @@
import { SlashCommandBuilder, PermissionFlagsBits, userMention } from "discord.js"
import { getIGN, getHeadURL } from "utils/Hypixel"
import { embedColor, devMessage } from "config/options"
import verify from "schemas/verifyTag"
import { ICommand } from "interfaces"
export = {
name: "whois",
description: "Get's the ign of a user.",
dev: false,
public: false,
data: new SlashCommandBuilder()
.setName("whois")
.setDescription("Get's the ign of a user.")
.addUserOption(option =>
option
.setName("user")
.setDescription("The user to get the ign of.")
.setRequired(true)
)
.setDefaultMemberPermissions(PermissionFlagsBits.Administrator)
.setDMPermission(false),
async execute({ interaction }) {
await interaction.deferReply()
const user = interaction.options.getUser("user")!
const verifiedUser = await verify.findOne({ where: { userID: user.id } })
if (!verifiedUser) {
interaction.editReply({
embeds: [{
description: userMention(user.id) + " is not verified.",
color: embedColor
}]
})
return
}
const ign = (await getIGN(verifiedUser.uuid)) as string
const head = await getHeadURL(ign)
await interaction.editReply({
embeds: [{
title: interaction.guild!.name,
description: "**User:** " + userMention(user.id) +
"\n**IGN:** " + ign,
color: embedColor,
thumbnail: {
url: head!
},
footer: {
text: interaction.guild!.name + " | " + devMessage,
icon_url: interaction.guild!.iconURL() || undefined
}
}]
})
}
} as ICommand
import { SlashCommandBuilder, PermissionFlagsBits, userMention } from "discord.js"
import { getIGN, getHeadURL } from "utils/Hypixel"
import { embedColor, devMessage } from "config/options"
import verify from "schemas/verifyTag"
import { ICommand } from "interfaces"
export = {
name: "whois",
description: "Get's the ign of a user.",
dev: false,
public: false,
data: new SlashCommandBuilder()
.setName("whois")
.setDescription("Get's the ign of a user.")
.addUserOption(option =>
option
.setName("user")
.setDescription("The user to get the ign of.")
.setRequired(true)
)
.setDefaultMemberPermissions(PermissionFlagsBits.Administrator)
.setDMPermission(false),
async execute({ interaction }) {
await interaction.deferReply()
const user = interaction.options.getUser("user")!
const verifiedUser = await verify.findOne({ where: { userID: user.id } })
if (!verifiedUser) {
interaction.editReply({
embeds: [{
description: userMention(user.id) + " is not verified.",
color: embedColor
}]
})
return
}
const ign = (await getIGN(verifiedUser.uuid)) as string
const head = await getHeadURL(ign)
await interaction.editReply({
embeds: [{
title: interaction.guild!.name,
description: "**User:** " + userMention(user.id) +
"\n**IGN:** " + ign,
color: embedColor,
thumbnail: {
url: head!
},
footer: {
text: interaction.guild!.name + " | " + devMessage,
icon_url: interaction.guild!.iconURL() || undefined
}
}]
})
}
} as ICommand