From 7160b367cf3a3f618939069009d2b48605e434bd Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sun, 4 Sep 2016 20:02:41 +0200 Subject: [PATCH] fixmepls --- bot.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/bot.py b/bot.py index 9ce7100d..4c1f85ef 100644 --- a/bot.py +++ b/bot.py @@ -295,6 +295,8 @@ def cv(): # Elenco di tutte le persone online su Discord tosend = "*Su Discord ora:*\n" r = discord.getwidgetdata("176353500710699008") + musicstatus = str() + musicchannel = str() for member in r['members']: m = dict() if 'bot' not in member or not member['bot']: @@ -329,6 +331,19 @@ def cv(): tosend += "{emoji} *{channelname}* {name}\n".format(**m) else: tosend += "{emoji} {name}\n".format(**m) + # Controlla se l'utente รจ royal music + elif 'id' == "176358898851250176": + if 'game' in member: + for channel in r['channels']: + if member['channel_id'] == channel['id']: + musicchannel = channel['name'] + break + # Todo: migliorami + musicstatus = "{emoji} *{channelname}* {songname}\n".format(emoji="\U0001F3B5", + channelname=musicchannel, + songname=member['game']['name']) + if musicstatus != "": + tosend += musicstatus telegram.sendmessage(tosend, sentin, source)