You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Luno/commands/misc/uptime.js

28 lines
857 B

const Discord = require('discord.js');
const Bot = require('../../models/bot');
const moment = require('moment');
require('moment-precise-range-plugin');
module.exports = {
name: "uptime",
aliases: ['ut', 'up'],
meta: {
category: 'Misc',
description: "Shows the bot's uptime",
syntax: '`uptime`',
extra: null
},
help: "Shows my uptime, which is how long it's been since my last restart.",
async execute(message, msg, args, cmd, prefix, mention, client) {
const bot = await Bot.findOne({finder: 'lel'});
return message.channel.send(new Discord.MessageEmbed()
.setTitle("Uptime")
.setDescription(moment.preciseDiff(moment(bot.lastRestart), moment()))
.setColor('328ba8')
.setFooter("Luno")
.setTimestamp()
)
}
};