JaBa/commands/General/ping.js

26 lines
605 B
JavaScript
Raw Normal View History

2021-12-10 21:39:54 +05:00
const Command = require("../../base/Command.js");
class Ping extends Command {
constructor (client) {
super(client, {
name: "ping",
dirname: __dirname,
enabled: true,
guildOnly: false,
aliases: [ "pong", "latency" ],
memberPermissions: [],
botPermissions: [ "SEND_MESSAGES" ],
nsfw: false,
ownerOnly: false,
cooldown: 1000
});
}
async run (message) {
message.sendT("general/ping:CONTENT", { ping: "..." }).then((m) => {
2021-12-10 21:39:54 +05:00
m.sendT("general/ping:CONTENT", { ping: m.createdTimestamp - message.createdTimestamp }, { edit: true });
});
}
};
module.exports = Ping;