“Discord.py псевдонимы” Ответ

Discord.py псевдонимы

@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

Как ограничить команду роли в discord.py

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

Ответы похожие на “Discord.py псевдонимы”

Вопросы похожие на “Discord.py псевдонимы”

Смотреть популярные ответы по языку

Смотреть другие языки программирования