mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-09 23:00:18 +00:00
Added status command
This commit is contained in:
parent
2ada1e3f08
commit
faf389a66e
23
client/commands/status.js
Normal file
23
client/commands/status.js
Normal 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);
|
||||
|
||||
},
|
||||
};
|
@ -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"
|
||||
};
|
Loading…
Reference in New Issue
Block a user