Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
434 views
in Technique[技术] by (71.8m points)

python - discord.ext.commands.errors.CommandInvokeError: Command raised an exception: AttributeError: 'ClientUser' object has no attribute 'create_dm'

This command is supposed to DM everyone in a server. Heres my code:

bot = commands.Bot(command_prefix = prefix)
@bot.command(name = 'massdm', pass_context=True)
async def dm(ctx, message):
    guild = ctx.message.guild
    for member in guild.members:
        await asyncio.sleep(0)
        await member.send(message)
        await ctx.send("Sent message")
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I don't see your error but I assume that the line await ctx.send_message(member, message) causing the error. There nothing like ctx.send_message. You can use ctx.send, channel.send, member.send. If you want to send a dm, you use member.send. So you can do:

@bot.command(name = 'massdm', pass_context=True)
async def dm(ctx, message):
    guild = ctx.message.guild
    for member in guild.members:
        await asyncio.sleep(0)
        try:
            await member.send(message)
            await ctx.send("Sent message")
        except:
            await ctx.send("Error")

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...