I want to make slash commands look like this.. But idk what to do from here
尝试做这个代码和研究:
@slash.slash(name="bot_status", description="Sets bot's status and status message", options=[
manage_commands.create_option(
name="ok",
description="input the bot's status type",
option_type=3,
required=True,
)])
async def bot_status(ctx: SlashContext, *, option_1):
await ctx.send(content="Success")
1条答案
按热度按时间u5rb5r591#
这些命令通常称为斜线命令,是应用程序命令。您可以通过命令树对其进行修改、添加新命令等
例如,在你的程序
tree = bot.tree
上添加,对于每个命令@tree.command()
,阅读文档以获得更具体的信息。如果tree.sync()
看起来不起作用,也可以考虑使用它。