mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-27 13:34:28 +00:00
Emoji...?
This commit is contained in:
parent
b2a5f26f6d
commit
bd7a0eefab
1 changed files with 8 additions and 8 deletions
16
royalbot.py
16
royalbot.py
|
@ -80,7 +80,7 @@ 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("\u26A0 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 = {
|
||||||
|
@ -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 = "\u26AA Offline"
|
text = "⚪ Offline"
|
||||||
elif(online == 1):
|
elif(online == 1):
|
||||||
text = "\U1F535 Online"
|
text = "🔵 Online"
|
||||||
elif(online == 2):
|
elif(online == 2):
|
||||||
text = "\U1F534 Occupato"
|
text = "🔴 Occupato"
|
||||||
elif(online == 3):
|
elif(online == 3):
|
||||||
text = "\u26AB Assente"
|
text = "⚫ Assente"
|
||||||
elif(online == 4):
|
elif(online == 4):
|
||||||
text = "\u26AB Inattivo"
|
text = "⚫ Inattivo"
|
||||||
elif(online == 5):
|
elif(online == 5):
|
||||||
text = "\U1F535 Disponibile per scambiare"
|
text = "🔵 Disponibile per scambiare"
|
||||||
elif(online == 6):
|
elif(online == 6):
|
||||||
text = "\U1F535 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'])
|
Loading…
Reference in a new issue