2015-10-03 16:41:34 +00:00
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
import telegram
|
|
|
|
|
import steam
|
|
|
|
|
|
|
|
|
|
while(True):
|
|
|
|
|
#Guarda il comando ricevuto.
|
|
|
|
|
msg = telegram.getUpdates()
|
2015-10-04 09:36:21 +00:00
|
|
|
|
print(msg['text'])
|
2015-10-03 16:41:34 +00:00
|
|
|
|
cmd = msg['text'].split(' ')
|
2015-10-03 21:36:05 +00:00
|
|
|
|
sby = msg['chat']['id']
|
2015-10-03 16:44:23 +00:00
|
|
|
|
if(cmd[0].startswith('/ahnonlosoio')):
|
2015-10-03 21:36:05 +00:00
|
|
|
|
telegram.sendMessage("Ah, non lo so nemmeno io!", sby)
|
|
|
|
|
elif(cmd[0].startswith('/ehoh')):
|
|
|
|
|
telegram.sendMessage("Eh, oh. Sono cose che capitano.", sby)
|
|
|
|
|
elif(cmd[0].startswith('/start')):
|
|
|
|
|
telegram.sendMessage("Ascolta, io mi starto quando mi pare. Anzi, quando @Steffo ha voglia di aprirmi.", sby)
|
|
|
|
|
elif(cmd[0].startswith('/playing')):
|
2015-10-04 09:41:25 +00:00
|
|
|
|
if(len(cmd) >= 2):
|
2015-10-03 21:36:05 +00:00
|
|
|
|
n = steam.getNumberOfCurrentPlayers(cmd[1])
|
2015-10-04 09:36:21 +00:00
|
|
|
|
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)
|
2015-10-03 21:36:05 +00:00
|
|
|
|
else:
|
2015-10-04 09:36:21 +00:00
|
|
|
|
telegram.sendMessage(chr(9888) + " Non hai specificato un AppID!\nLa sintassi corretta è /playing <AppID>.", sby)
|