如何指定语音通道在通道列表中的位置?不和谐.py

时间:2020-12-29 13:27:10

标签: python api discord discord.py discord.py-rewrite

我正在尝试使用机器人在我的 Discord 服务器上创建语音频道,但我需要在频道列表中的特定位置使用它。我该怎么做?

2 个答案:

答案 0 :(得分:0)

查看 VoiceChannel.edit 的文档。

您可以通过 position={index} 将频道移动到频道列表中的任意位置。

答案 1 :(得分:0)

如果有人想要一个片段

# creates the category at the top of the server channels
category_text = 'ex category'
category = await ctx.guild.create_category(category_text, position=0)
# creates the channel
channel_total_members = await ctx.guild.create_text_channel('lmao1')
# edit other parameters of the channel such as name, position or the category that is in
await channel_total_members.edit(name="test1", position=0, category=category)