xopbot
Version:
XOPBOT Is A Multipurpose Bot With Over 200+ Commands That Make You Love The Bot!
13 lines • 692 B
JavaScript
const lineReplyNoMention = require('discord-reply');
const color = process.env.Color;
module.exports = {
name: 'ping',
permissions: ["SEND_MESSAGES"],
clientpermissions: ["SEND_MESSAGES"],
cooldown: 5,
description: "this is a ping command!",
async execute(client, message, cmd, args, Discord) {
const fakping = new Discord.MessageEmbed().setTimestamp().setColor(`${color}`).setAuthor(`${message.author.username} 🏓 PONG!`, message.author.displayAvatarURL({ dynamic: true })).setDescription(`**Why Da F@k You Ping Me?\nIF You Need Help You Can Do \`x!help\`And Get My CMDS!**`)
return message.lineReplyNoMention({ embed: fakping })
}
}