mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Sistemato un crash, emoji
This commit is contained in:
parent
bd7a0eefab
commit
910379db21
1 changed files with 10 additions and 10 deletions
20
royalbot.py
20
royalbot.py
|
@ -80,13 +80,13 @@ while(True):
|
|||
if(msg['text'].startswith("/steam")):
|
||||
#Se non viene specificato un
|
||||
if(msg['text'] == "/steam"):
|
||||
sendMessage("⚠ 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 = {
|
||||
'@Steffo': 76561198034314260,
|
||||
'@EvilBaluIsEvilT_T': 76561198071012695,
|
||||
'@Fulz': 76561198035547490,
|
||||
'@Fultz': 76561198035547490,
|
||||
'@IlGattopardo': 76561198111021344,
|
||||
'@FrankFrankFrank': 76561198071099951,
|
||||
'@fedYal': 76561198109189938,
|
||||
|
@ -109,7 +109,7 @@ while(True):
|
|||
'@Boni3099': 76561198131868211,
|
||||
}
|
||||
#Controlla se la selezione è un username di telegram.
|
||||
if(steamids[msg['text'][7:]]):
|
||||
if(msg['text'][7:] in steamids ):
|
||||
selezione = steamids[msg['text'][7:]]
|
||||
else:
|
||||
selezione = msg['text'][7:]
|
||||
|
@ -119,19 +119,19 @@ while(True):
|
|||
name = steam['response']['players'][0]['personaname']
|
||||
text = ""
|
||||
if(online == 0):
|
||||
text = "⚪ Offline"
|
||||
text = unichr(9898) + " Offline"
|
||||
elif(online == 1):
|
||||
text = "🔵 Online"
|
||||
text = unichr(128309) + " Online"
|
||||
elif(online == 2):
|
||||
text = "🔴 Occupato"
|
||||
text = unichr(128308) + "Occupato"
|
||||
elif(online == 3):
|
||||
text = "⚫ Assente"
|
||||
text = unichr(9899) + " Assente"
|
||||
elif(online == 4):
|
||||
text = "⚫ Inattivo"
|
||||
text = unichr(9899) + " Inattivo"
|
||||
elif(online == 5):
|
||||
text = "🔵 Disponibile per scambiare"
|
||||
text = unichr(128309) + " Disponibile per scambiare"
|
||||
elif(online == 6):
|
||||
text = "🔵 Disponibile per giocare"
|
||||
text = unichr(128309) + " Disponibile per giocare"
|
||||
sendMessage(name + " e' " + text + ".", msg['chat']['id'])
|
||||
else:
|
||||
sendMessage("Lo steamid non esiste!", msg['chat']['id'])
|
Loading…
Reference in a new issue