python 斜线命令间距discord.py

dffbzjpn  于 2023-03-11  发布在  Python
关注(0)|答案(1)|浏览(168)

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")
u5rb5r59

u5rb5r591#

这些命令通常称为斜线命令,是应用程序命令。您可以通过命令树对其进行修改、添加新命令等
例如,在你的程序tree = bot.tree上添加,对于每个命令@tree.command(),阅读文档以获得更具体的信息。如果tree.sync()看起来不起作用,也可以考虑使用它。

相关问题