1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 03:54:20 +00:00

Royalbot sta scrivendo...

This commit is contained in:
Steffo 2015-08-11 14:53:03 +02:00
parent cf9ebeafb1
commit f0d7969ce2

View file

@ -82,6 +82,16 @@ def sendMessage(content, to, da):
#Manda il messaggio #Manda il messaggio
r = requests.get("https://api.telegram.org/bot" + token + "/sendMessage", params=parametri) r = requests.get("https://api.telegram.org/bot" + token + "/sendMessage", params=parametri)
#RoyalBot sta scrivendo...
def setTyping(type, to):
#Parametri del messaggio
parametri = {
'chat_id': to,
'action': type,
}
#Manda la richiesta ai server di Telegram.
requests.get("https://api.telegram.org/bot" + token + "/sendChatAction", params=parametri)
def getSteamStatus(steamid): def getSteamStatus(steamid):
#Parametri della richiesta #Parametri della richiesta
parametri = { parametri = {
@ -170,6 +180,8 @@ while(True):
if(msg['text'] == "/osu"): if(msg['text'] == "/osu"):
sendMessage(unichr(9888) + " Non hai specificato un PlayerID o un username di osu! o Telegram!", msg['chat']['id'], msg['from']['id']) sendMessage(unichr(9888) + " Non hai specificato un PlayerID o un username di osu! o Telegram!", msg['chat']['id'], msg['from']['id'])
else: else:
#Royalbot sta scrivendo...
setTyping('typing', msg['chat']['id'])
#Persona selezionata #Persona selezionata
selezione = msg['text'][5:] selezione = msg['text'][5:]
#Ricevi i dati di Osu #Ricevi i dati di Osu