1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

/saldistim

This commit is contained in:
Steffo 2015-10-04 12:20:11 +02:00
parent 06c1a3ecde
commit 43626b5a26

11
bot.py
View file

@ -6,7 +6,7 @@ while(True):
#Guarda il comando ricevuto.
msg = telegram.getUpdates()
print(msg['text'])
cmd = msg['text'].split(' ')
cmd = msg['text'].split(' ', 1)
sby = msg['chat']['id']
if(cmd[0].startswith('/ahnonlosoio')):
telegram.sendMessage("Ah, non lo so nemmeno io!", sby)
@ -20,6 +20,11 @@ while(True):
if(n == None):
telegram.sendMessage(chr(9888) + " L'app specificata non esiste!", sby)
else:
telegram.sendMessage("In questo momento, " + str(n) + " persone stanno giocando a *ID: " + cmd[1] + "*", sby)
telegram.sendMessage("In questo momento, " + str(n) + " persone stanno giocando a [" + cmd[1] + "](https://steamdb.info/app/" + cmd[1] + "/graphs/)", sby)
else:
telegram.sendMessage(chr(9888) + " Non hai specificato un AppID!\nLa sintassi corretta è /playing <AppID>.", sby)
telegram.sendMessage(chr(9888) + " Non hai specificato un AppID!\nLa sintassi corretta è /playing <AppID>.", sby)
elif(cmd[0].startswith('/saldistim')):
if(len(cmd) >= 2):
telegram.sendMessage("Ricerca di offerte di [" + cmd[1] + "](https://isthereanydeal.com/#/search:" + cmd[1].replace(' ', '%20') + ";/scroll:%23gamelist) completata.", sby)
else:
telegram.sendMessage(chr(9888) + " Non hai specificato un gioco!\nLa sintassi corretta è /saldistim <NomeGioco>.", sby)