用 python 在 Discord 上标记某人 [重复]
Posted
技术标签:
【中文标题】用 python 在 Discord 上标记某人 [重复]【英文标题】:Tagging someone on Discord with python [duplicate] 【发布时间】:2021-12-10 16:49:21 【问题描述】:这是我第一次在 Discord 上制作机器人,我想在我的频道上标记一个成员并在其中添加一条消息。我的代码是这样的:
@client.event
async def on_message(message):
if message.author == client.user:
return
if message.content.startswith('|bro'):
await message.channel.send("You are dumb" + the member)
消息应该是这样的:"You are dumb @themember"
【问题讨论】:
【参考方案1】:如果您想 ping 作者,只需在您的回复中包含 message.author.mention
。
“.mention”会像您使用 @ 符号一样 ping 用户。
【讨论】:
以上是关于用 python 在 Discord 上标记某人 [重复]的主要内容,如果未能解决你的问题,请参考以下文章
python使用openCV图像加载(转化为灰度图像)Shi-Tomasi算法(Shi-Tomasi Corner Detector)进行角点检测在图像上标记每个角点可视化标记了角点的图像数据
python使用openCV图像加载(转化为灰度图像)Harris角点检测器算法(Harris Corner Detector)进行角点检测在图像上标记每个角点可视化标记了角点的图像数据
python使用openCV图像加载(转化为灰度图像)Harris角点检测器算法(Harris Corner Detector)进行角点检测在图像上标记每个角点可视化标记了角点的图像数据