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

Impedito un crash.

This commit is contained in:
Steffo 2015-08-07 17:19:03 +02:00
parent cec02dc3e8
commit bdf9aa8a9e

View file

@ -61,6 +61,7 @@ def getSteamStatus(steamid):
}
#Manda la richiesta ai server di Telegram e convertila in un dizionario
r = requests.get("http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/", params=parametri).json()
print(r)
return r
#Il loop del bot
@ -80,6 +81,7 @@ while(True):
sendMessage("Specifica lo steamid della persona di cui vuoi specificare lo stato. Tag di telegram coming soon!", msg['chat']['id'])
else:
steam = getSteamStatus(msg['text'][7:])
if(steam['response']['players']):
online = steam['response']['players'][0]['personastate']
name = steam['response']['players'][0]['personaname']
text = ""
@ -97,4 +99,4 @@ while(True):
text = "Disponibile per scambiare"
elif(online == 6):
text = "Disponibile per giocare"
sendMessage(name + " e' " + text + ".", msg['chat']['id'])
sendMessage(name + " è " + text + ".", msg['chat']['id'])