频道不一致机器人中的消息

时间:2020-06-14 09:35:55

标签: python discord

我想知道如何使用命令在某个通道(在python中)发送消息

我的命令:

@bot.command() @commands.has_role("Administrator") async def message(ctx, message): await ctx.channel.purge(limit=1) await ctx.send(message)

1 个答案:

答案 0 :(得分:0)

您必须获取要发送消息的频道ID

await ctx.channel.purge(limit=1)
chn = bot.get_channel(721666738835685437)
await chn.send(message)