# Status to Online (The green one)
await client.change_presence(status=discord.Status.online)
# Status to Idle (The orange one)
await client.change_presence(status=discord.Status.idle)
# Status to Do not disturb (The red one)
await client.change_presence(status=discord.Status.dnd)
# Playing ____
await bot.change_presence(activity=discord.Game(name='Minecraft'))
# Streaming ____
await bot.change_presence(activity=discord.Streaming(name="Chess", url=twitch_url))
# Watching ____
await bot.change_presence(activity=discord.Activity(type=discord.ActivityType.watching, name="Harry Potter"))
# Competing in ____
await bot.change_presence(activity=discord.Activity(type=discord.ActivityType.competing, name="the House Cup"))
# Listening to ____
await bot.change_presence(activity=discord.Activity(type=discord.ActivityType.listening, name="!help"))
@bot.event
async def on_member_update(prev,cur):
games = ["overwatch", "rocket league", "minecraft", "stardew valley"]
print(cur.activity.name.lower())
if cur.activity and cur.activity.name.lower() in games:
#do something