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
x
7
1
@client.command()
2
async def verify(ctx):
3
if str(ctx.guild.id) in verify_roles:
4
guild = ctx.message.author.guild
5
rolegiven = ctx.message.author.guild.get_role(verify_roles.get(str(guild.id)))
6
await ctx.message.author.add_roles(rolegiven)
7
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
1
12
12
1
@client.command()
2
async def verify(ctx):
3
await ctx.message.delete() # deletes the message the author sent
4
if str(ctx.guild.id) in verify_roles:
5
verify_role = ctx.guild.get_role(verify_roles.get(str(guild.id)))
6
# check if the role is not in the author's current roles
7
if verify_role not in ctx.author.roles:
8
await ctx.author.add_roles(verify_role)
9
await ctx.send("You have been verified!")
10
else:
11
await ctx.send(f"You already have {verify_role.name}")
12