Added status command

This commit is contained in:
Christer Warén 2020-08-25 09:30:24 +03:00
parent 2ada1e3f08
commit faf389a66e
2 changed files with 27 additions and 1 deletions

23
client/commands/status.js Normal file
View File

@ -0,0 +1,23 @@
module.exports = {
name: 'status',
alias: 'none',
usage: '',
description: 'Bot Status',
permission: 'none',
category: 'info',
async execute(msg, args, client, Discord, command) {
let message = {};
message.statusTitle = client.messages.statusTitle.replace("%client.user.username%", client.user.username);
const embed = new Discord.MessageEmbed()
.setTitle(message.statusTitle)
.setThumbnail("https://cdn.discordapp.com/emojis/" + client.messageEmojis["logo"].replace(/[^0-9]+/g, ''))
.setColor(client.config.embedColor)
.addField(client.messages.statusField1, client.ws.ping, true)
.addField(client.messages.statusField2, uptime, true)
.setFooter(client.messages.footerText, "https://cdn.discordapp.com/emojis/" + client.messageEmojis["eximiabots"].replace(/[^0-9]+/g, ''));
msg.channel.send(embed);
},
};

View File

@ -34,5 +34,8 @@ module.exports = {
errorToGetPlaylist: "You can't use this bot because it has no playlist available. Check more information in our Discord support server %client.config.supportGuild% !",
notAllowed: "You are not allowed to do that!",
sendedMaintenanceMessage: "This bot is going to be under maintenance!",
footerText: "EximiaBots by Warén Group"
footerText: "EximiaBots by Warén Group",
statusTitle: "%client.user.username% Status",
statusField1: "Ping",
statusField2: "Uptime"
};