diff --git a/bot.py b/bot.py index 58066ca5..c408b32e 100644 --- a/bot.py +++ b/bot.py @@ -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 .", sby) \ No newline at end of file + telegram.sendMessage(chr(9888) + " Non hai specificato un AppID!\nLa sintassi corretta è /playing .", 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 .", sby) \ No newline at end of file