47 lines
1.5 KiB
JavaScript
47 lines
1.5 KiB
JavaScript
|
const Discord = require('discord.js');
|
||
|
const os = require('node:os');
|
||
|
const func = require('../../utils/functions');
|
||
|
const config = require('../../configs/config.json');
|
||
|
|
||
|
module.exports = {
|
||
|
name: "Ping",
|
||
|
aliases: ["P", "L", "Latency"],
|
||
|
description: "Shows the bot\'s latency.",
|
||
|
|
||
|
async execute(client, message, args, cmd) {
|
||
|
|
||
|
await message.channel.sendTyping();
|
||
|
|
||
|
const embed = new Discord.EmbedBuilder()
|
||
|
.setColor(config.MainColor)
|
||
|
.setAuthor({
|
||
|
name: `Pong!`,
|
||
|
iconURL: client.user.displayAvatarURL({ size: 1024 })
|
||
|
})
|
||
|
.addFields(
|
||
|
{
|
||
|
name: `📡 Ping:`,
|
||
|
value: `${client.ws.ping}ms`,
|
||
|
inline: true
|
||
|
},
|
||
|
{
|
||
|
name: `💾 Memory:`,
|
||
|
value: `${func.numberWithCommas(Math.round((process.memoryUsage().rss / 1024 / 1024)))}/${func.numberWithCommas(Math.round(os.totalmem() / 1024 / 1024))}MB`,
|
||
|
inline: true
|
||
|
},
|
||
|
{
|
||
|
name: `⏳ Uptime:`,
|
||
|
value: func.timestamp(client.readyTimestamp),
|
||
|
inline: false
|
||
|
},
|
||
|
)
|
||
|
.setFooter({
|
||
|
text: `Commanded by ${message.author.tag}`,
|
||
|
iconURL: message.author.displayAvatarURL({ size: 1024 })
|
||
|
});
|
||
|
|
||
|
await message.reply({ embeds: [embed] });
|
||
|
|
||
|
},
|
||
|
|
||
|
};
|