【发布时间】:2021-04-19 02:12:06
【问题描述】:
我目前正在编写一个不和谐的机器人反应角色命令。
一切都很顺利,但我有一个问题。
当我启动机器人并运行命令来创建嵌入时,一切正常。问题是当我对消息做出反应时,它并没有给我角色。这是我的代码:
module.exports = {
name: "reactionrole",
description: "Sets up a reaction role message!",
async execute(message, args, Discord, client) {
const channel = "751217304733351976";
const yellowTeamRole = message.guild.roles.cache.find((role) => role.name === "ROBLOX");
const blueTeamRole = message.guild.roles.cache.find((role) => role.name === "Minecraft");
const redTeamRole = message.guild.roles.cache.find((role) => role.name === "MinecraftBedrock");
const yellowTeamEmoji = "798904223755927562";
const blueTeamEmoji = "798904030553440257";
const redTeamEmoji = "798904121544540181";
let embed = new Discord.MessageEmbed()
.setColor("#e42643")
.setTitle("Choose the games you play!")
.setDescription("Choosing a game will ping you when others want to play with you!\n\n" + `ROBLOX\n` + `Minecraft\n` + "Minecraft Bedrock");
let messageEmbed = await message.channel.send(embed);
messageEmbed.react(yellowTeamEmoji);
messageEmbed.react(blueTeamEmoji);
messageEmbed.react(redTeamEmoji);
client.on("messageReactionAdd", async (reaction, user) => {
if (reaction.message.partial) await reaction.message.fetch();
if (reaction.partial) await reaction.fetch();
if (user.bot) return;
if (!reaction.message.guild) return;
if (reaction.message.channel.id == channel) {
if (reaction.emoji.name === yellowTeamEmoji) {
await reaction.message.guild.members.cache.get(user.id).roles.add(yellowTeamRole);
}
if (reaction.emoji.name === blueTeamEmoji) {
await reaction.message.guild.members.cache.get(user.id).roles.add(blueTeamRole);
}
if (reaction.emoji.name === redTeamEmoji) {
await reaction.message.guild.members.cache.get(user.id).roles.add(redTeamRole);
} else {
return;
}
}
});
client.on("messageReactionRemove", async (reaction, user) => {
if (reaction.message.partial) await reaction.message.fetch();
if (reaction.partial) await reaction.fetch();
if (user.bot) return;
if (!reaction.message.guild) return;
if (reaction.message.channel.id == channel) {
if (reaction.emoji.name === yellowTeamEmoji) {
await reaction.message.guild.members.cache.get(user.id).roles.remove(yellowTeamRole);
}
if (reaction.emoji.name === blueTeamEmoji) {
await reaction.message.guild.members.cache.get(user.id).roles.remove(blueTeamRole);
}
if (reaction.emoji.name === redTeamEmoji) {
await reaction.message.guild.members.cache.get(user.id).roles.remove(redTeamRole);
} else {
return;
}
}
});
},
};
【问题讨论】:
标签: javascript node.js discord discord.js