“Discord.py Aliases” Kod odpowiedzi

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

Jak ograniczyć polecenie do roli w Discord.py

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

Odpowiedzi podobne do “Discord.py Aliases”

Pytania podobne do “Discord.py Aliases”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu