1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 03:54:20 +00:00
This commit is contained in:
Steffo 2015-09-01 17:46:08 +02:00
parent f1865baa0c
commit 2c5e196ab2

View file

@ -148,6 +148,12 @@ while(True):
if(data['result'] != []): if(data['result'] != []):
#Aggiorna l'update ID sul file #Aggiorna l'update ID sul file
writeFile("lastid.txt", str(data['result'][0]['update_id'] + 1)) writeFile("lastid.txt", str(data['result'][0]['update_id'] + 1))
#...esiste il messaggio? telegram wtf
try:
data['result'][0]['message']['text']
except KeyError:
print(data['result'][0]['message'])
else:
#Leggi i dati del messaggio #Leggi i dati del messaggio
msg = data['result'][0]['message'] msg = data['result'][0]['message']
#Ah, non lo so io! #Ah, non lo so io!
@ -184,17 +190,17 @@ while(True):
if(online == 0): if(online == 0):
text = chr(9898) + " Offline" text = chr(9898) + " Offline"
elif(online == 1): elif(online == 1):
text = chr(55357) + chr(56629) + " Online" text = chr(111986) + " Online"
elif(online == 2): elif(online == 2):
text = chr(55357) + chr(56628) + " Occupato" text = chr(111985) + " Occupato"
elif(online == 3): elif(online == 3):
text = chr(9899) + " Assente" text = chr(9899) + " Assente"
elif(online == 4): elif(online == 4):
text = chr(9899) + " Addormentato" text = chr(9899) + " Addormentato"
elif(online == 5): elif(online == 5):
text = chr(55357) + chr(56629) + " Disponibile per scambiare" text = chr(111986) + " Disponibile per scambiare"
elif(online == 6): elif(online == 6):
text = chr(55357) + chr(56629) + " Disponibile per giocare" text = chr(111986) + " Disponibile per giocare"
if ingame is not None: if ingame is not None:
sendMessage(name + " sta giocando a " + chr(55357) + chr(56628) + " " + ingame + ".", msg['chat']['id'], msg['from']['id']) sendMessage(name + " sta giocando a " + chr(55357) + chr(56628) + " " + ingame + ".", msg['chat']['id'], msg['from']['id'])
else: else: