使用discord.ext.commands,我如何使机器人发送自己的用户名? python3

时间:2020-08-07 13:39:07

标签: python python-3.x discord.py discord.py-rewrite

我不知道如何让我的机器人发送自己的用户名。我在想这样的事情:

@commands.command
async def sendname(self,ctx):
    await ctx.send("I don't know what I would put here")

如果有人知道解决方案,请告诉我。

1 个答案:

答案 0 :(得分:0)

您可以使用client.userbot.user [取决于不和谐的定义。Bot]。

@commands.command
async def sendname(self,ctx):
    await ctx.send(client.user.name)