mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +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")):
|
||||
#Se non viene specificato un
|
||||
if(msg['text'] == "/steam"):
|
||||
sendMessage("\u26A0 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 = {
|
||||
|
@ -119,19 +119,19 @@ while(True):
|
|||
name = steam['response']['players'][0]['personaname']
|
||||
text = ""
|
||||
if(online == 0):
|
||||
text = "\u26AA Offline"
|
||||
text = "⚪ Offline"
|
||||
elif(online == 1):
|
||||
text = "\U1F535 Online"
|
||||
text = "🔵 Online"
|
||||
elif(online == 2):
|
||||
text = "\U1F534 Occupato"
|
||||
text = "🔴 Occupato"
|
||||
elif(online == 3):
|
||||
text = "\u26AB Assente"
|
||||
text = "⚫ Assente"
|
||||
elif(online == 4):
|
||||
text = "\u26AB Inattivo"
|
||||
text = "⚫ Inattivo"
|
||||
elif(online == 5):
|
||||
text = "\U1F535 Disponibile per scambiare"
|
||||
text = "🔵 Disponibile per scambiare"
|
||||
elif(online == 6):
|
||||
text = "\U1F535 Disponibile per giocare"
|
||||
text = "🔵 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