为了账号安全,请及时绑定邮箱和手机立即绑定

在不和谐中更改昵称时缺少权限错误.js

在不和谐中更改昵称时缺少权限错误.js

Cats萌萌 2022-08-18 16:08:32
每次我尝试使用我的机器人更改服务器中其他人的昵称(甚至是朋友的服务器中的我自己),它都会失败,给我带来以下错误:(node:11620) UnhandledPromiseRejectionWarning: DiscordAPIError: Missing Permissions    at RequestHandler.execute (C:\Users\(User)\Desktop\Discord Bot\Nick-Cycle\node_modules\discord.js\src\rest\RequestHandler.js:170:25)    at processTicksAndRejections (internal/process/task_queues.js:97:5)(node:11620) 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 handledwith .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)(node:11620) [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.on('message', async message => {    const prefix = ";"    if (message.author.bot) return;    if (!message.guild) return;    if (!message.content.startsWith(prefix)) return;    const args = message.content.slice(prefix.length).trim().split(/ +/g);    const cmd = args.shift().toLowerCase();    switch(cmd) {        case "setnick":         if (!message.guild.me.hasPermission("MANAGE_NICKNAMES")) return message.channel.send("I don't have Manage Nicknames!");        if (!args[0]) return message.channel.send("Not enough arguments!");        if (args[0] === getUserFromMention(args[0])) {            const user = getUserFromMention(args[0])            if (!args[1]) return message.channel.send("Not enough arguments!");            message.guild.members.fetch(user).setNickname(args[1]);        }        else {            message.member.setNickname(args[0]);        }        break;    }    });怎么了?这是一个小故障吗?角色中是否有问题?还是我的代码有问题?
查看完整描述

2 回答

?
郎朗坤

TA贡献1921条经验 获得超9个赞

好消息!您的代码不是问题所在。问题在于机器人角色的定位方式以及它拥有的权限。确保机器人能够更改其他人的姓名,并且其角色高于受害者的角色。希望这有帮助!

//img1.sycdn.imooc.com//62fdf3ac00018d1e04260055.jpg

将其打开

//img1.sycdn.imooc.com//62fdf3b5000198b904160063.jpg

查看完整回答
反对 回复 2022-08-18
?
绝地无双

TA贡献1946条经验 获得超4个赞

我解决了它。事实证明,它没有像它应该的那样接受争论,并继续转移到Else,在那里它改变了你自己的昵称,在我的服务器中,我是所有者,我的昵称不能被机器人改变。通过重写if语句来修复它,以便在继续之前专门检查提及。现在工作!


查看完整回答
反对 回复 2022-08-18
  • 2 回答
  • 0 关注
  • 96 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信