I use this code to count discord members
JavaScript
x
19
19
1
class CONFING:
2
PREFIX = 'k.'
3
client = commands.Bot(command_prefix=CONFING.PREFIX)
4
client.remove_command('help')
5
@client.event
6
async def on_ready():
7
print('1')
8
print('2')
9
print('3')
10
print('GanGz Iz Here')
11
servers = len(client.guilds)
12
members = 0
13
for guild in client.guilds:
14
members += guild.member_count
15
await client.change_presence(activity = discord.Activity(
16
type = discord.ActivityType.watching,
17
name = f'✨{members} ᴍᴇᴍʙᴇʀꜱ'
18
))
19
and I wanna add active mics to activity too (I mean the users that they are connected to voice) I tried many ways but I failed
Advertisement
Answer
I add it a loop that refresh the status.
JavaScript
1
25
25
1
class CONFING:
2
PREFIX = 'k.'
3
intents = discord.Intents.default()
4
intents.members = True
5
client = commands.Bot(command_prefix=CONFING.PREFIX, intents=intents)
6
7
@client.event
8
async def on_ready():
9
print("n▄▀█ █░█░█ ░░█n█▀█ ▀▄▀▄▀ █▄█n")
10
if not loop.is_running():
11
loop.start()
12
13
@tasks.loop(seconds=10)
14
async def loop():
15
print("Refresh")
16
servers = len(client.guilds)
17
members = 0
18
connected_members = 0
19
for guild in client.guilds:
20
members += guild.member_count
21
for channel in guild.voice_channels:
22
connected_members += len(channel.members)
23
await client.change_presence(activity=discord.Game(f'✨{members} ᴍᴇᴍʙᴇʀꜱ⚡{connected_members} ᴍɪᴄ'))
24
print("Done")
25