Fixed formatting on all command files

This commit is contained in:
2024-01-20 17:19:08 +01:00
parent f34923e2c5
commit a3791d170c
25 changed files with 655 additions and 1168 deletions

View File

@@ -25,28 +25,23 @@ export = {
if (!verifyData) {
await interaction.editReply({
embeds: [
{
description:
"You are not verified. Please run `/verify` to verify yourself",
color: embedColor,
footer: {
text: interaction.guild!.name + " | " + devMessage,
icon_url: interaction.guild!.iconURL() || undefined
}
embeds: [{
description: "You are not verified. Please run `/verify` to verify yourself",
color: embedColor,
footer: {
text: interaction.guild!.name + " | " + devMessage,
icon_url: interaction.guild!.iconURL() || undefined
}
]
}]
})
return
}
await interaction.editReply({
embeds: [
{
description: "Fetching your guild data...",
color: embedColor
}
]
embeds: [{
description: "Fetching your guild data...",
color: embedColor
}]
})
const guild = await getGuild(verifyData.uuid)
@@ -61,138 +56,87 @@ export = {
const head = await getHeadURL(ign)
if (guildID !== hypixelGuildID) {
const roles = roleManage("default")
await user.roles.remove(
roles.rolesToRemove,
"User used the update command"
)
await user.roles.add(
roles.rolesToAdd,
"User used the update command"
)
await user.roles.remove(roles.rolesToRemove, "User used the update command")
await user.roles.add(roles.rolesToAdd, "User used the update command")
await interaction.editReply({
embeds: [
{
description: "Updated your roles to `Default Member`",
color: embedColor,
thumbnail: {
url: head!
},
footer: {
text: interaction.guild!.name + " | " + devMessage,
icon_url: interaction.guild!.iconURL() || undefined
}
embeds: [{
description: "Updated your roles to `Default Member`",
color: embedColor,
thumbnail: {
url: head!
},
footer: {
text: interaction.guild!.name + " | " + devMessage,
icon_url: interaction.guild!.iconURL() || undefined
}
]
}]
})
return
}
if (guildID === hypixelGuildID) {
const GuildMembers = guild!.members
const guildRank = GuildMembers.find(
member => member.uuid === verifyData.uuid
)!.rank
const guildRank = GuildMembers.find(member => member.uuid === verifyData.uuid)!.rank
let replyRank: string | null = null
await user.roles.add(
roleManage("default").rolesToAdd,
"User used the update command"
)
await user.roles.add(roleManage("default").rolesToAdd, "User used the update command")
if (guildRank === "Guild Master") {
const roles = roleManage("gm")
await user.roles.remove(
roles.rolesToRemove,
"User used the update command"
)
await user.roles.add(
roles.rolesToAdd,
"User used the update command"
)
await user.roles.remove(roles.rolesToRemove, "User used the update command")
await user.roles.add(roles.rolesToAdd, "User used the update command")
replyRank = "Guild Master"
}
if (guildRank === "Manager") {
const roles = roleManage("manager")
await user.roles.remove(
roles.rolesToRemove,
"User used the update command"
)
await user.roles.add(
roles.rolesToAdd,
"User used the update command"
)
await user.roles.remove(roles.rolesToRemove, "User used the update command")
await user.roles.add(roles.rolesToAdd, "User used the update command")
replyRank = "Manager"
}
if (guildRank === "Moderator") {
const roles = roleManage("moderator")
await user.roles.remove(
roles.rolesToRemove,
"User used the update command"
)
await user.roles.add(
roles.rolesToAdd,
"User used the update command"
)
await user.roles.remove(roles.rolesToRemove, "User used the update command")
await user.roles.add(roles.rolesToAdd, "User used the update command")
replyRank = "Moderator"
}
if (guildRank === "Beast") {
const roles = roleManage("beast")
await user.roles.remove(
roles.rolesToRemove,
"User used the update command"
)
await user.roles.add(
roles.rolesToAdd,
"User used the update command"
)
await user.roles.remove(roles.rolesToRemove, "User used the update command")
await user.roles.add(roles.rolesToAdd, "User used the update command")
replyRank = "Beast"
}
if (guildRank === "Elite") {
const roles = roleManage("elite")
await user.roles.remove(
roles.rolesToRemove,
"User used the update command"
)
await user.roles.add(
roles.rolesToAdd,
"User used the update command"
)
await user.roles.remove(roles.rolesToRemove, "User used the update command")
await user.roles.add(roles.rolesToAdd, "User used the update command")
replyRank = "Elite"
}
if (guildRank === "Member") {
const roles = roleManage("member")
await user.roles.remove(
roles.rolesToRemove,
"User used the update command"
)
await user.roles.add(
roles.rolesToAdd,
"User used the update command"
)
await user.roles.remove(roles.rolesToRemove, "User used the update command")
await user.roles.add(roles.rolesToAdd, "User used the update command")
replyRank = "Member"
}
await interaction.editReply({
embeds: [
{
description:
"Updated your roles to `" + replyRank + "`",
color: embedColor,
thumbnail: {
url: head!
},
footer: {
text: interaction.guild!.name + " | " + devMessage,
icon_url: interaction.guild!.iconURL() || undefined
}
embeds: [{
description:
"Updated your roles to `" + replyRank + "`",
color: embedColor,
thumbnail: {
url: head!
},
footer: {
text: interaction.guild!.name + " | " + devMessage,
icon_url: interaction.guild!.iconURL() || undefined
}
]
}]
})
}
}