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.
Working solution I found with help thanks to Rani