async def status(bot):
gamename = 'Atmosfera'
while not bot.is_closed():
await bot.change_presence(name=gamename, status=discord.Status.online, afk=True)
await asyncio.sleep(20)
bot.loop.create_task(status(bot))
bot.run(read_config('token'), bot=False)