mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-09 16:20:18 +00:00
Prepared maintenance command
This commit is contained in:
parent
310fbacdfe
commit
f6ef67957d
35
commands/maintenance.js
Normal file
35
commands/maintenance.js
Normal file
@ -0,0 +1,35 @@
|
||||
module.exports = {
|
||||
name: 'maintenance',
|
||||
alias: 'm',
|
||||
usage: '',
|
||||
description: 'Bot Maintenance',
|
||||
permission: 'none',
|
||||
category: 'maintenance',
|
||||
execute(msg, args, client, Discord, command) {
|
||||
const embed = new Discord.MessageEmbed()
|
||||
.setTitle(client.messages.maintenanceTitle)
|
||||
.setThumbnail("https://cdn.discordapp.com/emojis/" + client.messageEmojis["maintenance"].replace(/[^0-9]+/g, ''))
|
||||
.setColor(client.config.embedColor)
|
||||
.setDescription(client.messages.maintenanceDescription)
|
||||
.setFooter('EximiaBots by Warén Media', "https://cdn.discordapp.com/emojis/" + client.messageEmojis["eximiabots"].replace(/[^0-9]+/g, ''));
|
||||
return msg.channel.send(embed);
|
||||
}
|
||||
};
|
||||
|
||||
function msToTime(duration, format) {
|
||||
var seconds = Math.floor((duration / 1000) % 60),
|
||||
minutes = Math.floor((duration / (1000 * 60)) % 60),
|
||||
hours = Math.floor((duration / (1000 * 60 * 60)) % 24);
|
||||
days = Math.floor((duration / (1000 * 60 * 60 * 24)) % 24);
|
||||
|
||||
days = (days < 10) ? "0" + days : days;
|
||||
hours = (hours < 10) ? "0" + hours : hours;
|
||||
minutes = (minutes < 10) ? "0" + minutes : minutes;
|
||||
seconds = (seconds < 10) ? "0" + seconds : seconds;
|
||||
|
||||
if (format === "hh:mm:ss") {
|
||||
return `${hours}:${minutes}:${seconds}`;
|
||||
} else if (format === "dd:hh:mm:ss") {
|
||||
return `${days}:${hours}:${minutes}:${seconds}`;
|
||||
}
|
||||
}
|
@ -29,5 +29,7 @@ module.exports = {
|
||||
invalidVolume: "You need to enter a valid __number__.",
|
||||
negativeVolume: "The volume needs to be a positive number!",
|
||||
newVolume: "Volume is now: **%volume%**",
|
||||
statisticsTitle: "Statistics"
|
||||
statisticsTitle: "Statistics",
|
||||
maintenanceTitle: "Maintenance",
|
||||
maintenanceDescription: "This command is not ready to be used by anyone."
|
||||
};
|
Loading…
Reference in New Issue
Block a user