“aliase diskord.py” Code-Antworten

aliase diskord.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

So begrenzen Sie einen Befehl auf eine Rolle in Discord.py

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

Ähnliche Antworten wie “aliase diskord.py”

Fragen ähnlich wie “aliase diskord.py”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen