“Discord.py Alias” Réponses codées

Discord.py Alias

@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_

Alias ​​de commande Discord Python

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

Comment limiter une commande à un rôle dans Discord.py

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

Réponses similaires à “Discord.py Alias”

Questions similaires à “Discord.py Alias”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code