我需要检查舞台的主题以获取命令。像这样:
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)
答案 0 :(得分:0)
舞台频道确实有一个主题。该主题可以通过 discord.StageChannel.topic
猜测 828995257135267950
是您的 stage-channel-id:
stage = message.guild.get_channel(828995257135267950)
channeltopic = stage.topic