Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/301.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/ssh/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python Discord.py如何重写DM命令?_Python_Python 3.x_Discord.py_Discord.py Rewrite - Fatal编程技术网

Python Discord.py如何重写DM命令?

Python Discord.py如何重写DM命令?,python,python-3.x,discord.py,discord.py-rewrite,Python,Python 3.x,Discord.py,Discord.py Rewrite,当执行“-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

当执行“-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.

要向中的用户发送私人消息,请使用以下方法:

这是因为
User
是抽象类的一个子类

async def help(ctx):
    ...
    await ctx.author.send(...)