如何使用 Discord.py 重写更改机器人用户名/头像?
How to change bot username / avatar with Discord.py rewrite?
我一直在寻找如何做到这一点,但似乎我能找到的唯一解决方案都行不通。
使用 ClientUser.edit
on the Client.user
代表您的机器人的对象:
@bot.command()
async def rename(ctx, name):
await bot.user.edit(username=name)
我一直在寻找如何做到这一点,但似乎我能找到的唯一解决方案都行不通。
使用 ClientUser.edit
on the Client.user
代表您的机器人的对象:
@bot.command()
async def rename(ctx, name):
await bot.user.edit(username=name)