mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
Nuovo comando, /steam steamid
This commit is contained in:
parent
97a0d558d8
commit
ab70c75b07
1 changed files with 19 additions and 1 deletions
20
royalbot.py
20
royalbot.py
|
@ -79,4 +79,22 @@ while(True):
|
||||||
if(msg['text'] == "/steam")
|
if(msg['text'] == "/steam")
|
||||||
sendMessage("Specifica lo steamid della persona di cui vuoi specificare lo stato. Tag di telegram coming soon!", msg['chat']['id'])
|
sendMessage("Specifica lo steamid della persona di cui vuoi specificare lo stato. Tag di telegram coming soon!", msg['chat']['id'])
|
||||||
else:
|
else:
|
||||||
getSteamStatus(msg['text'][7:])
|
steam = getSteamStatus(msg['text'][7:])
|
||||||
|
online = steam['response']['players'][0]['personastate']
|
||||||
|
name = steam['response']['players'][0]['personaname']
|
||||||
|
text = ""
|
||||||
|
if(online == 0):
|
||||||
|
text = "Offline"
|
||||||
|
elif(online == 1):
|
||||||
|
text = "Online"
|
||||||
|
elif(online == 2):
|
||||||
|
text = "Occupato"
|
||||||
|
elif(online == 3):
|
||||||
|
text = "Assente"
|
||||||
|
elif(online == 4):
|
||||||
|
text = "Inattivo"
|
||||||
|
elif(online == 5):
|
||||||
|
text = "Disponibile per scambiare"
|
||||||
|
elif(online == 6):
|
||||||
|
text = "Disponibile per giocare"
|
||||||
|
sendMessage(name + " è " + text + ".")
|
Loading…
Reference in a new issue