From bd7a0eefab6595cd74abc22904343f55c0a91196 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Fri, 7 Aug 2015 18:51:27 +0200 Subject: [PATCH] Emoji...? --- royalbot.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/royalbot.py b/royalbot.py index d5aaee44..8946f16d 100644 --- a/royalbot.py +++ b/royalbot.py @@ -80,7 +80,7 @@ while(True): if(msg['text'].startswith("/steam")): #Se non viene specificato un if(msg['text'] == "/steam"): - sendMessage("\u26A0 Non hai specificato uno steamid!", msg['chat']['id']) + sendMessage("⚠ Non hai specificato uno steamid!", msg['chat']['id']) else: #Elenco degli steamid e degli username di telegram. steamids = { @@ -119,19 +119,19 @@ while(True): name = steam['response']['players'][0]['personaname'] text = "" if(online == 0): - text = "\u26AA Offline" + text = "⚪ Offline" elif(online == 1): - text = "\U1F535 Online" + text = "🔵 Online" elif(online == 2): - text = "\U1F534 Occupato" + text = "🔴 Occupato" elif(online == 3): - text = "\u26AB Assente" + text = "⚫ Assente" elif(online == 4): - text = "\u26AB Inattivo" + text = "⚫ Inattivo" elif(online == 5): - text = "\U1F535 Disponibile per scambiare" + text = "🔵 Disponibile per scambiare" elif(online == 6): - text = "\U1F535 Disponibile per giocare" + text = "🔵 Disponibile per giocare" sendMessage(name + " e' " + text + ".", msg['chat']['id']) else: sendMessage("Lo steamid non esiste!", msg['chat']['id']) \ No newline at end of file