“Discord.py machen nur Befehl Administrator nur” Code-Antworten

Discord.py machen nur Befehl Administrator nur

# Make sure you don't have a command called "commands"
@client.command() # As usual
@commands.has_permissions(administrator=True) # Making sure the person executing the command has the permissions
async def foo(ctx):
	await ctx.send("Hello")
    #ect
HelloWorld

Wie man nur Administratoren in diskord.py einen Befehl machen lassen

@commands.has_permissions(administrator=True)
@client.command() 
async def admins_only_command(ctx, *, args):
    # ur code
Blue-eyed Batfish

Ähnliche Antworten wie “Discord.py machen nur Befehl Administrator nur”

Fragen ähnlich wie “Discord.py machen nur Befehl Administrator nur”

Weitere verwandte Antworten zu “Discord.py machen nur Befehl Administrator nur” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen