My nextcord (python) is ignoring the if statements below the first if statement and can't figure out why

81 Views Asked by At

Sorry if this is a dumb question, however whenever I'm running my code it does not listen to the if statements within the if statement?

@bot.command()
@commands.has_role('Moderator')
async def activity(ctx):
    days = datetime.datetime.now() - datetime.timedelta(days=7)
    print(days)
    for member in ctx.guild.members:
        for role in member.roles:
            if role.name == "Trusted Member":
                if role.name == "Exempt":
                    print("<@" + str(member.id) + "> has a perm exemption")
                elif role.name == "Temp Exempt":
                    print("<@" + str(member.id) + "> has a temp exemption, it has now been removed...")
                else:
                    counter = 0
                    channel = bot.get_channel(1)
                    async for message in channel.history(limit=None, after=days):
                        if message.author == member:
                            counter += 1
                    print("<@" + str(member.id) + "> has sent " + str(counter))

The script will not check if they have an exempt role and instead just proceed to check how many messages they have sent.

Thanks in advance.

1

There are 1 best solutions below

2
On BEST ANSWER

Working solution I found with help thanks to Rani

@bot.command()
@commands.has_role('Moderator')
async def activity(ctx):
    days = datetime.datetime.now() - datetime.timedelta(days=7)
    for member in ctx.guild.members:
        role_names = []
        for role in member.roles:
            role_names.append(role.name)
        if "Trusted Member" in role_names:
            if "Exempt" in role_names:
                print("<@" + str(member.id) + "> has a perm exemption")
            elif "Temp Exempt" in role_names:
                print("<@" + str(member.id) + "> has a temp exemption, it has now been removed...")
            else:
                counter = 0
                channel = bot.get_channel(1)
                async for message in channel.history(limit=None, after=days):
                    if message.author == member:
                        counter += 1
                print("<@" + str(member.id) + "> has sent " + str(counter))```