more status touchups

pull/1/head
michael 2019-11-29 21:33:51 -08:00
parent 6be22b21fb
commit a7949bb5a7
1 changed files with 5 additions and 8 deletions

13
bot.py
View File

@ -42,17 +42,14 @@ banning_users = []
async def status_loop(): async def status_loop():
while True: while True:
member_total = 0 await bot.change_presence(activity=discord.Game(name='{0} users in {1} servers'.format(len(bot.users), len(bot.guilds))))
for s in bot.guilds:
member_total += len(s.members)
await bot.change_presence(activity=discord.Game(name='{0} users in {1} servers'.format(member_total, len(bot.guilds))))
await asyncio.sleep(STATUS_LOOP) await asyncio.sleep(STATUS_LOOP)
# await bot.change_presence(activity=discord.Game(name='{} servers | >>help'.format(len(bot.guilds)))) await bot.change_presence(activity=discord.Game(name='>>help'.format(len(bot.guilds))))
await bot.change_presence(activity=discord.Game(name='`>>help` me'.format(len(bot.guilds)))) await asyncio.sleep(STATUS_LOOP)
await bot.change_presence(activity=discord.Game(name='Communist Revolution 2: Electric Boogaloo'.format(len(bot.guilds))))
await asyncio.sleep(STATUS_LOOP) await asyncio.sleep(STATUS_LOOP)
# await bot.change_presence(activity=discord.Game(name='Communist Revolution 2: Electric Boogaloo'.format(len(bot.guilds))))
# await asyncio.sleep(STATUS_LOOP)
@bot.event @bot.event
async def on_ready(): async def on_ready():