nyx/command/Owner/guilds.js

27 lines
799 B
JavaScript
Raw Normal View History

2021-09-06 12:38:25 +02:00
const { MessageEmbed } = require("discord.js");
module.exports = {
name: "guilds",
category: "Owner",
description: "Check top 10 guilds of the bot",
Owner: true,
run: async (client, interaction) => {
2021-09-06 12:38:25 +02:00
const guilds = client.guilds.cache
.sort((a, b) => b.memberCount - a.memberCount)
.first(10);
const description = guilds
.map((guild, index) => {
return `**${index + 1}** ${guild.name} = ${
guild.memberCount
} members`;
2021-09-06 12:38:25 +02:00
})
.join("\n");
const embed = new MessageEmbed()
2021-09-06 12:38:25 +02:00
.setTitle("Guilds")
.setDescription(description)
.setColor(client.color)
.setFooter(`Made by ${client.author}`, client.user.displayAvatarURL())
2021-09-06 12:38:25 +02:00
.setTimestamp();
interaction.followUp({ embeds: [embed] });
},
};