我已经尝试过使用它,但是它不起作用,任何人都不知道如何使用Discord.js创建角色? Code here:
答案 0 :(得分:0)
let vRole = message.guild.roles.cache.find(role => role.name === "Verified");
if (!vRole) {
vRole = await message.guild.roles.create({ data: { name: 'Verified', permissions: [], color: '#00ff22' } })
}
这可能会引起错误,提示await is only valid in async function
,因此您必须使函数异步。
信息: -https://discordjs.guide/popular-topics/permissions.html#creating-a-role-with-permissions 变化: -https://discordjs.guide/additional-info/changes-in-v12.html#guild-createrole