如何在discord.py中发送消息

时间:2020-06-25 03:15:57

标签: discord.py discord.py-rewrite

当用户键入命令时,如何发送普通消息?我尝试使用@ client.command 异步防御 但这不起作用D:

3 个答案:

答案 0 :(得分:0)

您可以使用await ctx.send("Your message here"),并确保在@client.command中传递了上下文。 如果您还有其他问题,请随时问我:)

答案 1 :(得分:0)

如果有帮助,请以此为指导

@client.command
async def ping(ctx):
await ctx.send("Your message")

答案 2 :(得分:0)

这里 ctx 是上下文,hi 是命令

代码:

@client.command
async def hi(ctx):
    await ctx.send("Message which you want to send")