“Discord Py Aliase” 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

Discord Py Aliase

@client.command(name="command", aliases = ["cmds"])
async def slowmode(ctx):
	await ctx.send("This is a command.")
Outstanding Octopus

Ähnliche Antworten wie “Discord Py Aliase”

Fragen ähnlich wie “Discord Py Aliase”

Weitere verwandte Antworten zu “Discord Py Aliase” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen