1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
This commit is contained in:
Steffo 2015-08-07 18:43:06 +02:00
parent 5e83e5077b
commit b2a5f26f6d

View file

@ -75,12 +75,12 @@ while(True):
msg = data['result'][0]['message'] msg = data['result'][0]['message']
#Ah, non lo so io! #Ah, non lo so io!
if(msg['text'].startswith("/ahnonlosoio")): if(msg['text'].startswith("/ahnonlosoio")):
sendMessage("Ah non lo so nemmeno io ¯\_()_/¯", msg['chat']['id']) sendMessage("Ah non lo so nemmeno io ¯\_(?)_/¯", msg['chat']['id'])
#Controlla lo stato di una persona su Steam. #Controlla lo stato di una persona su Steam.
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("⚠️ Non hai specificato uno steamid!", msg['chat']['id']) sendMessage("\u26A0 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 = "⚪️ Offline" text = "\u26AA Offline"
elif(online == 1): elif(online == 1):
text = "🔵 Online" text = "\U1F535 Online"
elif(online == 2): elif(online == 2):
text = "🔴 Occupato" text = "\U1F534 Occupato"
elif(online == 3): elif(online == 3):
text = "⚫️ Assente" text = "\u26AB Assente"
elif(online == 4): elif(online == 4):
text = "⚫️ Inattivo" text = "\u26AB Inattivo"
elif(online == 5): elif(online == 5):
text = "🔵 Disponibile per scambiare" text = "\U1F535 Disponibile per scambiare"
elif(online == 6): elif(online == 6):
text = "🔵 Disponibile per giocare" text = "\U1F535 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'])