我如何让我的不和谐机器人让DM成为会员和我自己?

时间:2019-12-23 22:09:12

标签: python bots discord discord.py-rewrite dm

如果可能的话,我如何让我的discord机器人(使用python)向DM其他用户以及发送命令的人(告诉他们他们说的话)?

编辑:已解决,谢谢Patrick Haugh-https://stackoverflow.com/users/6779307/patrick-haugh 顺便说一下,这是我的代码,以防其他人遇到相同的问题:

@client.command()
async def dm(ctx, user: discord.User, *, message=None):
    if message == None:
        await ctx.send('You need to put a message')
    else:
        await user.send(message)
        await ctx.channel.purge(limit=1)
        await ctx.send('DM Sent')
        await ctx.author.send('"' + message + '"' + ' sent to ' + str(user))
        # just so i can see every dm (a bit creepy ik but hey it's my bot so i'll do it)
        print('"' + message + '"' + ' sent to ' + str(user))

1 个答案:

答案 0 :(得分:0)

以下代码段应回答您的问题:

async def on_message(self, message):
    await message.author.send("Content")
    await client.get_user(other_user_id).send("Content")