user12327406
user12327406

Reputation:

Check if user has permission in discord.py

I am making a kick command for my discord.py bot. Here is some code that the kick command might be:

    async kick_command(self, ctx, userName: discord.User):
      prefix_used = ctx.prefix
      alias_used = ctx.invoked_with
      text = msg[len(prefix_used) + len(alias_used):]
      if discord.User permissions = "admin":
        try:
          kick(User)
        except Exception as e:
          ee = "Error: " + e
          await ctx.send_message(content=ee)

I am pretty sure the if statement and kick(User) are invalid syntax. Can you help me?

My code: click here

Upvotes: 4

Views: 20239

Answers (2)

MzMiraculous
MzMiraculous

Reputation: 21

There is actually a better way of doing this without importing. I would recommend not importing and just doing this the way I am showing below because it will save you some time if you plan to import all of those.

This doesn't require importing anything for has_permissions.


@commands.has_permissions(kick_members=True)  
async def kick(self, ctx, Member: discord.Member):
    await bot.kick(Member)

Upvotes: 1

Kevin
Kevin

Reputation: 152

Try this:

@bot.command()
@has_permissions(kick_members=True)  
async def kick(self, ctx, Member: discord.Member):
          await bot.kick(Member)

@kick.error
async def kick_error(error, ctx):
   if isinstance(error, MissingPermissions):
       await ctx.send("You don't have permission to do that!")

don't forget to import the has_permissions: from discord.ext.commands import has_permissions

Upvotes: 5

Related Questions