我想在Discord.js中获得最高的公会角色
message.guild.roles.highestRole
这不起作用。任何帮助,将不胜感激。从现在开始谢谢:)
答案 0 :(得分:2)
对于discord.js v12 / master,请使用message.guild.roles.highest.name
对于discord.js v11.4.x /稳定使用message.guild.roles
.sort((b, a) => a.position - b.position || a.id - b.id)
.first()
.name
,这将按照角色的位置对Collection进行排序,然后得到最高的,然后返回它的名称。