出于某种原因,我无法让我的机器人 ping 所有人。我试过这个-
@client.command()
async def test(ctx):
await ctx.send("@everyone")
那行不通。我还尝试了 <@&role_id>
,这是我用来 ping 某些角色的方法。但这也行不通。我是编程新手,因此不胜感激。
答案 0 :(得分:1)
尝试使用默认角色:
@bot.command()
async def test(ctx):
await ctx.send(ctx.message.guild.default_role)