Nuestro grupo de expertos pasados muchos días de trabajo y recopilar de información, obtuvimos la solución, queremos que te sea de utilidad para tu proyecto.
Ejemplo 1: comando discord js ping
// If the command sent in the chat is "ping"if(cmd ===`$prefixping `)// It sends the user "Pinging"
message.channel.send("Pinging...").then(m=>// The math thingy to calculate the user's pingvar ping = m.createdTimestamp- message.createdTimestamp;// Basic embedvar embed =newDiscord.MessageEmbed().setAuthor(`Your ping is $ping`).setColor("Your Color")// Then It Edits the message with the ping variable embed that you created
m.edit(embed));
Ejemplo 2: cómo hacer un ping en discord.js
if(cmd ===`$prefixping`)
message.channel.send("Pinging...").then(m=>var ping = m.createdTimestamp- message.createdTimestamp;var botPing =Math.round(bot.pi);
m.edit(`**:ping_pong: Pong! Your Ping Is:-**n $pingms`););
valoraciones y comentarios
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)