Я пытаюсь добавить функцию реакции на моего бота. Это означает, что люди присоединяются к моему серверу и должны отвечать на сообщение с помощью эмодзи, чтобы получить соответствующие роли для каналов.
Я добавил бота на сервер с разрешением = 8 (администратор).
Здесь такое лог:
Ready!
Emoji is ?
Try to add Role Online to User *User*
Added *User*
(node:18801) UnhandledPromiseRejectionWarning: DiscordAPIError: Missing Permissions
at item.request.gen.end (/home/ubuntu/node_modules/discord.js/src/client/rest/RequestHandlers/Sequential.js:85:15)
at then (/home/ubuntu/node_modules/snekfetch/src/index.js:215:21)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
(node:18801) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 4)
(node:18801) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
А вот мой код:
client.once('ready', () => {
let messageID = '669575028605583390'
let guild = client.guilds.first()
let welcomeChannel = guild.channels.find(c => c.name === 'rulesNroles')
if (!welcomeChannel) return console.log("Couldn't find welcome channel.");
welcomeChannel.fetchMessage(messageID).then( message => {
const filter = (reaction) => {
return reaction.emoji.name === '?';
};
const collector = message.createReactionCollector(filter, { });
collector.on('collect', (reaction, reactionCollector) => {
try {
console.log(`Emoji is ${reaction.emoji.name}`)
let role = guild.roles.find(r => r.name === 'Online');
reaction.users.forEach(u => {
if (u != client.user) {
console.log(`Try to add Role ${role.name} to User ${u.username}`)
try {
let member = guild.members.find(gm => gm.user.id === u.id);
let addedMember = member.addRole(role);
if (typeof addedMember != 'undefined') console.log(`Added ${member.user.username}`)
} catch(e) {
//console.log(e.stack);
}
}
});
} catch(e) {
console.log(e.stack);
}
});
collector.on('end', () => console.log('ended'));
});
console.log('Ready!');
return;
});
Что я тут не так делаю? Надеюсь, вы можете помочь мне:)