我试图有一个斜杠命令,至少需要两个参数,由于某种原因,它是不工作,我找不到任何文件。
@bot.slash_command(name='greet', description='Greet someone!')
@discord.option(
"name",
description="Enter Name in format: John Doe",
required=False,
default='John Doe'
)
@discord.option(
"collar",
description="Enter Collar number e.g. 1789",
required=False,
default='1123'
)
async def greet(
ctx: discord.ApplicationContext,
name: str,
collar: str
):
await ctx.send(f'{name} {collar} \n' "http://imgur.com/gallery/YiMUiop")
bot.run(os.getenv('TOKEN')) # run the bot with the token
1条答案
按热度按时间f5emj3cl1#
这就是我在PyCord v2中使用的。3