Skip to content
Advertisement

discord.py Set a command to only work if the user doesn’t have a certain role

I’m trying to set up a verification command that gives a role upon its use, but I want to set it so the user can only use the command if they don’t already have the role. This is my code:

JavaScript

Advertisement

Answer

One thing you could do is to retrieve rolegiven at the very beginning of your code. You can then check if the ctx.author has this role via member.roles. Here is a simplified version of the explained.

JavaScript

Command working as seen here

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement