1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

Supporto per le menzioni completato

This commit is contained in:
Steffo 2015-08-07 18:29:12 +02:00
parent 24b6829fa7
commit e196e09436

View file

@ -82,30 +82,56 @@ while(True):
if(msg['text'] == "/steam"): if(msg['text'] == "/steam"):
sendMessage("⚠️ Non hai specificato uno steamid!", msg['chat']['id']) sendMessage("⚠️ Non hai specificato uno steamid!", msg['chat']['id'])
else: else:
#Controlla se la selezione è un tag di telegram. #Elenco degli steamid e degli username di telegram.
if(msg['text'][7:] == "@Steffo"): steamids = {
selezione = 76561198034314260 '@Steffo': 76561198034314260,
elif(msg['text'][7:] == "@FrankFrankFrank"): '@EvilBaluIsEvilT_T': 76561198071012695,
selezione = 76561198071099951 '@Fulz': 76561198035547490,
'@IlGattopardo': 76561198111021344,
'@FrankFrankFrank': 76561198071099951,
'@fedYal': 76561198109189938,
'@ActerRYG': 76561198146704979,
'@YouTouchMyTralala': 76561198121094516,
'@Heisenberg_TheMadDoctor': 76561198080377213,
'@SuperMattemb': 76561198115852550,
'@Peraemela99': 76561198161867082,
'@thevagginadestroyer': 76561198128738388,
'Fillo': 76561198103292029,
'@Cosimo03': 76561198062778224,
'Alby': 76561198071383448,
'@Voltaggio': 76561198147601821,
'Alle2002': 76561198052996311,
'Jummi': 76561198169975999,
'@Tauei': 76561198104305298,
'@Saitorlock': 76561198089120441,
'@iEmax': 76561198149695151,
'@Alleanderl': 76561198154175301,
'@Boni3099': 76561198131868211,
}
#Controlla se la selezione è un username di telegram.
if(steamids[msg['text'][7:]]):
selezione = steamids[msg['text'][7:]
else:
selezione = msg['text'][7:]
steam = getSteamStatus(selezione) steam = getSteamStatus(selezione)
if(steam['response']['players']): if(steam['response']['players']):
online = steam['response']['players'][0]['personastate'] online = steam['response']['players'][0]['personastate']
name = steam['response']['players'][0]['personaname'] name = steam['response']['players'][0]['personaname']
text = "" text = ""
if(online == 0): if(online == 0):
text = "Offline" text = "⚪️ Offline"
elif(online == 1): elif(online == 1):
text = "Online" text = "🔵 Online"
elif(online == 2): elif(online == 2):
text = "Occupato" text = "🔴 Occupato"
elif(online == 3): elif(online == 3):
text = "Assente" text = "⚫️ Assente"
elif(online == 4): elif(online == 4):
text = "Inattivo" text = "⚫️ Inattivo"
elif(online == 5): elif(online == 5):
text = "Disponibile per scambiare" text = "🔵 Disponibile per scambiare"
elif(online == 6): elif(online == 6):
text = "Disponibile per giocare" text = "🔵 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'])