“discord.js elimina la reacción” Código de respuesta

discord.js elimina la reacción

Since this question is getting a lot of attraction, I decided to post what worked for me

Remove Specific User's Specific Reaction

// Channel = the channel object of the message's original channel
// MessageID = ID of the message, if hard coding, put around quotations eg: "1234"

const msg = await channel.messages.fetch(MessageID);

msg.reactions.resolve("REACTION EMOJI, 
REACTION OBJECT OR REACTION ID").users.remove("ID OR OBJECT OF USER TO REMOVE");
Note: If using an older version of discord.js, simply replace channel.messages.fetch with channel.fetchMessage
Santino

Discord JS Retire la reacción del usuario

const userReactions = message.reactions.cache.filter(reaction => reaction.users.cache.has(userId));

try {
	for (const reaction of userReactions.values()) {
		await reaction.users.remove(userId);
	}
} catch (error) {
	console.error('Failed to remove reactions.');
}
Outstanding Otter

Respuestas similares a “discord.js elimina la reacción”

Preguntas similares a “discord.js elimina la reacción”

Más respuestas relacionadas con “discord.js elimina la reacción” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código