Entiende el código bien antes de usarlo a tu trabajo y si ttienes algo que aportar puedes decirlo en los comentarios.
Ejemplo 1: verificar si el mensaje menciona a los usuarios discord js
// 1st Wayif(<Message>.mentions.members.size)// or message.mentions.members.size > 0//DO STUFF// 2nd Wayif(<Message>.mentions.members.first())//DO STUFF
Ejemplo 2: cómo leer si una persona ha enviado un mensaje en discord.js
client.on('message',message=>// this function can check whether the content of the message you pass is the same as this messageletfilter=msg=>return msg.content.toLowerCase()== message.content.toLowerCase()&&// check if the content is the same (sort of)
msg.author== message.author;// check if the author is the same
message.channel.awaitMessages(filter,
maxMatches:1,// you only need that to happen once
time:5*1000// time is in milliseconds).then(collected=>// this function will be called when a message matches you filter).catch(console.error););
Aquí tienes las comentarios y valoraciones
Nos encantaría que puedieras dar recomendación a este artículo si te fue útil.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)