当我的机器人加入一个新公会时,它会创建一个角色并设置覆盖。
client.on("guildCreate", async guild => {
guild.roles.create({
data: {
name: "Billy 🤩", //sets the role name
color: "#e5f7b2", //sets the color of the role
permissions: 8 //sets the roles permissions to administrator
}
}).then(role => guild.member(client.user).roles.add(role)).catch(console.error);
});
我有 2 个问题:
是否可以将此角色移至列表顶部或至少靠近列表的某个位置?
我将如何继续将此角色与在线成员分开显示?
当年话下
相关分类