📌  相关文章
📜  discord.py 在成员加入时添加角色 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:35.210000             🧑  作者: Mango

代码示例1
intents = discord.Intents.default()
intents.members = True
client = commands.Bot(command_prefix=',', intents=intents)

@client.event 
async def on_member_join(member):
  role = get(member.guild.roles, id=role_id)
  await member.add_roles(role)