2020-04-20 04:52:50 +00:00
|
|
|
// Copyright 2020 Emily J. / mudkipscience and contributors. Subject to the AGPLv3 license.
|
2020-04-20 03:02:10 +00:00
|
|
|
|
2020-03-31 07:59:09 +00:00
|
|
|
exports.conf = {
|
|
|
|
enabled: true,
|
|
|
|
guildOnly: false,
|
|
|
|
aliases: [],
|
|
|
|
permLevel: 'User',
|
|
|
|
requiredPerms: [],
|
2020-04-01 08:33:02 +00:00
|
|
|
cooldown: 2000
|
2020-03-31 07:59:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
exports.help = {
|
|
|
|
name: 'ping',
|
2020-04-11 09:30:51 +00:00
|
|
|
category: 'Bot',
|
2020-04-12 09:15:31 +00:00
|
|
|
description: 'Check if bot is dying.',
|
2020-04-06 16:35:06 +00:00
|
|
|
usage: 'ping',
|
2020-04-12 09:15:31 +00:00
|
|
|
parameters: ''
|
2020-03-31 07:59:09 +00:00
|
|
|
}
|
|
|
|
|
2020-04-06 05:54:45 +00:00
|
|
|
exports.run = async (client, message, args, level, data) => {
|
2020-03-31 15:45:45 +00:00
|
|
|
const msg = await message.channel.send('Pinging...')
|
2020-03-31 07:59:09 +00:00
|
|
|
msg.edit(
|
2020-04-01 08:33:02 +00:00
|
|
|
`Pong! \`${msg.createdTimestamp - message.createdTimestamp}ms\` (💗 \`${Math.round(client.ws.ping)}ms\`)`
|
2020-03-31 07:59:09 +00:00
|
|
|
)
|
|
|
|
}
|