“Как ограничить команду разрешением в discord.py” Ответ

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

# 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

Discord.py Как использовать разрешения

from discord import Member
from discord.ext.commands import has_permissions, MissingPermissions

@bot.command(name="kick", pass_context=True)
@has_permissions(manage_roles=True, ban_members=True)
async def _kick(ctx, member: Member):
    await bot.kick(member)

@_kick.error
async def kick_error(error, ctx):
    if isinstance(error, MissingPermissions):
        text = "Sorry {}, you do not have permissions to do that!".format(ctx.message.author)
        await bot.send_message(ctx.message.channel, text)
Courageous Crossbill

Ответы похожие на “Как ограничить команду разрешением в discord.py”

Вопросы похожие на “Как ограничить команду разрешением в discord.py”

Больше похожих ответов на “Как ограничить команду разрешением в discord.py” по Python

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

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