You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Active participant is a role given to people who are active in chat
The server has a point system where a point is rewarded by this function:
@commands.Cog.listener()asyncdefon_message(self, message: discord.Message):
"""When a member sends a message, give them 1 point."""ifmessage.author.bot:
returnself.bot.db_client.add_points_to_user(message.author.id, 1)
the threshold for giving the role could be for example 100 messages and we only want to give the role once, so if the person has the role already don't give it.
The text was updated successfully, but these errors were encountered:
Active participant is a role given to people who are active in chat
The server has a point system where a point is rewarded by this function:
the threshold for giving the role could be for example 100 messages and we only want to give the role once, so if the person has the role already don't give it.
The text was updated successfully, but these errors were encountered: