“Discord.py Aliases” Respostas de código

Discord.py Aliases

@commands.command(name='test', aliases=['testcommand', 'testing'])
async def test(self, ctx):
    await ctx.send("This a test command")

#will run with either 'test, testcommand or testing
_creare_

Discord Python Command Alias

@commands.command(aliases=['testcommand', 'testing'])
async def test(self, ctx):
    await ctx.send("This a test command")
skull_is_dull

Como limitar um comando a uma função em discord.py

@bot.command()
@commands.has_role('RoleName')
async def command_name():
Meaty Boi

Respostas semelhantes a “Discord.py Aliases”

Perguntas semelhantes a “Discord.py Aliases”

Procure respostas de código populares por idioma

Procurar outros idiomas de código