F
F
flyska2021-03-28 09:57:51
Python
flyska, 2021-03-28 09:57:51

How to make a command that users with a specific discord.py role can use?

I want to make it so that users with a certain role can use the command
My bot is located on several servers and I want it to work on all servers and only users with a certain role on the bot server can use the command command
code

@bot.command()
@commands.has_any_role(811835508064911370)
async def изменитьактивность(ctx, *, arg):
    await bot.change_presence(activity=discord.Game(name=f"{arg}"))
    embed=discord.Embed(title="Активность бота изменена успешна", color=0x00ff00)
    embed.add_field(name="Активность изменена на", value=f"{arg}", inline=False)
    await ctx.send(embed=embed)
    print(f'[Logs:info] {ctx.author} Изменил активность бота на {arg}')

@изменитьактивность.error
async def изменитьактивность_error(ctx, error):
    if isinstance(error, commands.MissingAnyRole):
        embed = discord.Embed(title="Ошибка", description="У вас отсутствуем роль для использовании команды", color=0xff0000)
        await ctx.send(embed=embed)

Answer the question

In order to leave comments, you need to log in

2 answer(s)
M
Maxim Nevzorov, 2021-03-29
@flyska

Create your own check for a specific role on a specific server:

def is_special():
    async def predicate(ctx):
        guild = bot.get_guild(365017572336731127)
        if not (member := guild.get_member(ctx.author.id)):
            return
        return guild.get_role(129386605897151407) in member.roles
    return commands.check(predicate)

@bot.command()
@is_special()
async def cmd(ctx, ...):
    ...

V
vanproskur, 2021-03-28
@vanproskur

Russian functions are not supported in python discord.py.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question