“Discord.py alias” Kode Jawaban

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_

Perselisihan Perintah Python Alias

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

cara membatasi perintah untuk peran dalam discord.py

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

Jawaban yang mirip dengan “Discord.py alias”

Pertanyaan yang mirip dengan “Discord.py alias”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya