Haha-Yes/commands/utility/server.js

36 lines
922 B
JavaScript
Raw Normal View History

2018-12-30 01:20:24 +01:00
const { Command } = require('discord-akairo');
2018-12-25 19:17:07 +01:00
2018-12-30 01:20:24 +01:00
class ServerCommand extends Command {
2019-01-02 08:09:45 +01:00
constructor() {
super('server', {
aliases: ['server', 'serverinfo'],
category: 'utility',
channelRestriction: 'guild',
description: {
2018-12-30 01:20:24 +01:00
content: 'Show info about the server',
usage: '',
examples: ['']
}
2019-01-02 08:09:45 +01:00
});
}
2018-09-16 21:02:11 +02:00
2019-01-02 08:09:45 +01:00
async exec(message) {
const customresponse = require(`../tag/${message.guild.id}.json`);
var count = Object.keys(customresponse).length;
const addEmbed = {
color: 0x0099ff,
title: 'Stats of the server',
thumbnail: {
url: `${message.guild.iconURL}`,
},
description: `Member: **${message.guild.memberCount}** \nChannel number: **${message.guild.channels.size}**\nGuild created at **${message.guild.createdAt}**\nOwner: **${message.guild.owner}**\nTag number: **${count}**`,
};
message.channel.send({ embed: addEmbed });
}
2018-12-30 01:20:24 +01:00
}
module.exports = ServerCommand;