AI_botter/commands/messages/ping.js

47 lines
1.5 KiB
JavaScript
Raw Normal View History

2024-03-01 11:09:57 +00:00
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] });
},
};