我如何查看舞台频道主题?(discord.py)

时间:2021-06-11 08:14:28

标签: python discord discord.py

我需要检查舞台的主题以获取命令。像这样:

await message.delete()

stage = discord.Object(id='828995257135267950')
channeltopic = discord.StageChannel.topic(id=stage)
embed=discord.Embed(title="Stage Topic", description="This embed can show the current topic of the Stage", color=0xff2b2b)
embed.set_author(name="Administrator command")
embed.add_field(name="Current topic", value=channeltopic)
embed.set_footer(text="DiscordBot 2021")

await message.channel.send(embed=embed)

1 个答案:

答案 0 :(得分:0)

舞台频道确实有一个主题。该主题可以通过 discord.StageChannel.topic

获取

猜测 828995257135267950 是您的 stage-channel-id:

stage = message.guild.get_channel(828995257135267950)
channeltopic = stage.topic