不和.py重写如何DM命令?

2024-09-30 16:37:49 发布

您现在位置:Python中文网/ 问答频道 /正文

当执行“-help”时,我试图让我的bot DM用户获得帮助。在

我已经在我的代码中尝试过这样做,但它不起作用。在

async def help(ctx):
  helpembed = discord.Embed(color=discord.Color.purple())
  helpembed.set_author(name="Help")
  helpembed.add_field(name="-new", value="Creates a new ticket. [Logged]",inline=False)
  helpembed.add_field(name="-close", value="Closes the ticket.People with the role 'Viewing Team' can close ticets. [Logged]",inline=False)
  helpembed.add_field(name="-setup", value='Sets Up your server so it can be used',inline=False)
  helpembed.add_field(name="-help", value="Shows this message :rofl:",inline=False)
  await client.send_message(ctx.message.author, embed=helpembed)
await ctx.send("Help sent in DM's.")```

The bot should DM the user with help. Instead it does nothing.

Tags: thenameaddfalsefieldmessagevaluebot