我不知道如何让我的机器人发送自己的用户名。我在想这样的事情:
@commands.command
async def sendname(self,ctx):
await ctx.send("I don't know what I would put here")
如果有人知道解决方案,请告诉我。
答案 0 :(得分:0)
您可以使用client.user
或bot.user
[取决于不和谐的定义。Bot]。
@commands.command
async def sendname(self,ctx):
await ctx.send(client.user.name)