About 83,100 results
Open links in new tab
  1. How To Get The Member Count Discord.py - Stack Overflow

    Feb 4, 2023 · I am trying to add a status in my discord bot, which shows the total number of members, the bot is watching like all bots show for exmaple. If my bot is added in 2 servers, …

  2. How do I make a bot status that has memberCount on it?

    Feb 14, 2020 · I made a simple discord verify bot, but I want to make the bot status to watching # people verifying (the # is how many people in my server). I see some bots have it, but I don't …

  3. discord - DJS - Member count excluding bots - Stack Overflow

    Apr 1, 2022 · The entire approach potentially could be changed as well; perhaps you could use guildMemberAdd and guildMemberRemove events to track when the member count increases …

  4. Member Count bot! - Scripting Support - Developer Forum | Roblox

    Apr 3, 2021 · They probably use the Groups API to get the member count every minute or so and send the message if any change. You can program the bot in Python (discord.py), JS …

  5. How to get the member count in discord.py rewrite?

    May 31, 2020 · member_count = len(ctx.guild.members) # includes bots true_member_count = len([m for m in ctx.guild.members if not m.bot]) # doesn't include bots Also don't forget that if …

  6. python - How to make bot status say member count for all the …

    Jan 8, 2021 · I want my bot to tell me how many members that my bot is in a server with in the bot's status. In other words, I want my bot's statues to say Watching [member count] people …

  7. Discord Group Member Counter [BOT & WEBHOOK VERSION]

    Nov 19, 2022 · Hiya, I’ve made a fully customisable live Group Member Counter that updates how many new members there are to Discord. I have seen a few of these but usually they’re either …

  8. Member counter is not updating members count discord.js

    May 1, 2022 · The member count is only updating when the bot starts up, because you are only getting the member count when the bot starts up. To fix that particular issue, just move that …

  9. Count all members with a specific role with Discord Py

    Nov 5, 2020 · I'm almost new to programming. I wanted to add a function to my bot to count the amount of members with x role, it'll always be the same role. I've been trying to use …

  10. Discord.py - How to get member count not including bots?

    Apr 25, 2021 · Discord.py - How to get member count not including bots? Asked 4 years, 7 months ago Modified 3 years, 11 months ago Viewed 939 times