1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-27 13:34:28 +00:00

Emoji...?

This commit is contained in:
Steffo 2015-08-07 18:51:27 +02:00
parent b2a5f26f6d
commit bd7a0eefab

View file

@ -80,7 +80,7 @@ while(True):
if(msg['text'].startswith("/steam")): if(msg['text'].startswith("/steam")):
#Se non viene specificato un #Se non viene specificato un
if(msg['text'] == "/steam"): if(msg['text'] == "/steam"):
sendMessage("\u26A0 Non hai specificato uno steamid!", msg['chat']['id']) sendMessage("&#x26A0 Non hai specificato uno steamid!", msg['chat']['id'])
else: else:
#Elenco degli steamid e degli username di telegram. #Elenco degli steamid e degli username di telegram.
steamids = { steamids = {
@ -119,19 +119,19 @@ while(True):
name = steam['response']['players'][0]['personaname'] name = steam['response']['players'][0]['personaname']
text = "" text = ""
if(online == 0): if(online == 0):
text = "\u26AA Offline" text = "&#x26AA Offline"
elif(online == 1): elif(online == 1):
text = "\U1F535 Online" text = "&#x1F535 Online"
elif(online == 2): elif(online == 2):
text = "\U1F534 Occupato" text = "&#x1F534 Occupato"
elif(online == 3): elif(online == 3):
text = "\u26AB Assente" text = "&#x26AB Assente"
elif(online == 4): elif(online == 4):
text = "\u26AB Inattivo" text = "&#x26AB Inattivo"
elif(online == 5): elif(online == 5):
text = "\U1F535 Disponibile per scambiare" text = "&#x1F535 Disponibile per scambiare"
elif(online == 6): elif(online == 6):
text = "\U1F535 Disponibile per giocare" text = "&#x1F535 Disponibile per giocare"
sendMessage(name + " e' " + text + ".", msg['chat']['id']) sendMessage(name + " e' " + text + ".", msg['chat']['id'])
else: else:
sendMessage("Lo steamid non esiste!", msg['chat']['id']) sendMessage("Lo steamid non esiste!", msg['chat']['id'])