Advertisement
ninja-gen

uptime (Broken)

Jan 22nd, 2020
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const Discord = require("discord.js");
  2. const moment = require('moment');
  3. require('moment-duration-format');
  4. exports.run = (client, message, args) => {
  5.     const embed = new Discord.RichEmbed()
  6.       .setTitle("Bot Uptime")
  7.       .addField('Uptime:', moment.duration(client.uptime).format('d [days], h [hours], m [minutes], s [seconds]', { trim: "small" }), true)
  8.       .setColor(0x00A2E8)
  9.      message.channel.send(embed)
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement