发送来自discord.py的pm重写 [英] Send a pm from discord.py rewrite

查看:82
本文介绍了发送来自discord.py的pm重写的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试找出如何从discord.py重写机器人发送pm。我无法执行ctx.author.send( context),因为它向消息作者以外的人发送消息。
这是到目前为止,当我搜索用户时,它始终带有NONE值的代码。

I'm trying to figure out how to send a pm from a discord.py rewrite bot. I can't do ctx.author.send("context") because it messaging someone other than the author of the message. here's the code that I have so far when I'm searching for a user it always comes with the value of NONE

@bot.command()
async def spam(ctx, author, message, amount):
print(author)
print(ctx.author)
victim = bot.get_user(author)
print(victim)
if not (victim == None):
    for i in range(int(amount)):
        await victim.send(message)
else:
    print("NOPE")

它具有

GIMMY READY......
Denard#0759
Denard#0759
None
NOPE


推荐答案

使用 converter 来解析您的受害者的用户对象。

You can use a converter to resolve the User object of your victim automatically.

@bot.command()
async def spam(ctx, victim: discord.User, amount, *, message):
    for _ in range(amount):
        await victim.send(message)

然后使用其名称,ID或提及来指定它们:

You can then use their name, id, or a mention to specify them:

!spam Denard 1 spam spam spam
!spam @Denard 1 spam spam spam
!spam 1234 1 spam spam spam

这篇关于发送来自discord.py的pm重写的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆