如何使用discord.py对不一致服务器中的每个人进行DM?

2022-02-23 00:00:00 python discord.py

问题描述

发送命令:dmall时,我当前正在尝试让我的机器人对服务器的所有成员执行DM操作,但它似乎不起作用。

我的代码:

@bot.command()
@commands.is_owner()
async def dmall(ctx,*,message):
    for mem in ctx.guild.members:
        await ctx.message.delete()
        try:
            await mem.send(message)
            await ctx.send(f'Sent dm to: {mem.name}')
        except:
             print('User dm closed')

@dmall.error
async def dmall_error(ctx, error):
    if isinstance(error, commands.CheckFailure):
        await ctx.send('sorry comrade, you arent allowed to do that')

解决方案

没有回溯是不可能确定的,但是当您无法将DM发送给成员时,这很可能是错误的。如果成员将其隐私设置设置为不允许来自服务器成员的DM或阻止了机器人,则可能会发生这种情况。

您应该删除无法确定实际特定问题的此特定实例所表现出的捕获所有异常处理程序,这是一种不良做法,并检查回溯。

相关文章