mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54: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")):
|
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("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 = {
|
||||||
'@Steffo': 76561198034314260,
|
'@Steffo': 76561198034314260,
|
||||||
'@EvilBaluIsEvilT_T': 76561198071012695,
|
'@EvilBaluIsEvilT_T': 76561198071012695,
|
||||||
'@Fulz': 76561198035547490,
|
'@Fultz': 76561198035547490,
|
||||||
'@IlGattopardo': 76561198111021344,
|
'@IlGattopardo': 76561198111021344,
|
||||||
'@FrankFrankFrank': 76561198071099951,
|
'@FrankFrankFrank': 76561198071099951,
|
||||||
'@fedYal': 76561198109189938,
|
'@fedYal': 76561198109189938,
|
||||||
|
@ -109,7 +109,7 @@ while(True):
|
||||||
'@Boni3099': 76561198131868211,
|
'@Boni3099': 76561198131868211,
|
||||||
}
|
}
|
||||||
#Controlla se la selezione è un username di telegram.
|
#Controlla se la selezione è un username di telegram.
|
||||||
if(steamids[msg['text'][7:]]):
|
if(msg['text'][7:] in steamids ):
|
||||||
selezione = steamids[msg['text'][7:]]
|
selezione = steamids[msg['text'][7:]]
|
||||||
else:
|
else:
|
||||||
selezione = msg['text'][7:]
|
selezione = msg['text'][7:]
|
||||||
|
@ -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 = unichr(9898) + " Offline"
|
||||||
elif(online == 1):
|
elif(online == 1):
|
||||||
text = "🔵 Online"
|
text = unichr(128309) + " Online"
|
||||||
elif(online == 2):
|
elif(online == 2):
|
||||||
text = "🔴 Occupato"
|
text = unichr(128308) + "Occupato"
|
||||||
elif(online == 3):
|
elif(online == 3):
|
||||||
text = "⚫ Assente"
|
text = unichr(9899) + " Assente"
|
||||||
elif(online == 4):
|
elif(online == 4):
|
||||||
text = "⚫ Inattivo"
|
text = unichr(9899) + " Inattivo"
|
||||||
elif(online == 5):
|
elif(online == 5):
|
||||||
text = "🔵 Disponibile per scambiare"
|
text = unichr(128309) + " Disponibile per scambiare"
|
||||||
elif(online == 6):
|
elif(online == 6):
|
||||||
text = "🔵 Disponibile per giocare"
|
text = unichr(128309) + " 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'])
|
Loading…
Reference in a new issue