我正在 discord.py 中创建一个机器人,并希望我的机器人在 Webhook 在特定频道中发送消息时 ping 一个角色。有没有办法做到这一点?现在我只有频道 ID,我很确定这是一个客户端事件
@client.event
async def pingrole():
channel = client.get_channel("channel id")
答案 0 :(得分:0)
async def on_message(message):
if message.author.id == webhook.id:
await ctx.send(role.mention)