mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-27 13:34:28 +00:00
forse no crash
This commit is contained in:
parent
7b6a5bdaa5
commit
d3a680f0e9
1 changed files with 3 additions and 8 deletions
9
bot.py
9
bot.py
|
@ -1,4 +1,4 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
import telegram
|
import telegram
|
||||||
import steam
|
import steam
|
||||||
|
|
||||||
|
@ -8,17 +8,14 @@ while(True):
|
||||||
msg = telegram.getUpdates()
|
msg = telegram.getUpdates()
|
||||||
cmd = msg['text'].split(' ', 1)
|
cmd = msg['text'].split(' ', 1)
|
||||||
sby = msg['chat']['id']
|
sby = msg['chat']['id']
|
||||||
|
print(sby + ": " + repr(msg))
|
||||||
if(cmd[0].startswith('/ahnonlosoio')):
|
if(cmd[0].startswith('/ahnonlosoio')):
|
||||||
print('/ahnonlosoio')
|
|
||||||
telegram.sendMessage("Ah, non lo so nemmeno io!", sby)
|
telegram.sendMessage("Ah, non lo so nemmeno io!", sby)
|
||||||
elif(cmd[0].startswith('/ehoh')):
|
elif(cmd[0].startswith('/ehoh')):
|
||||||
print('/ehoh')
|
|
||||||
telegram.sendMessage("Eh, oh. Sono cose che capitano.", sby)
|
telegram.sendMessage("Eh, oh. Sono cose che capitano.", sby)
|
||||||
elif(cmd[0].startswith('/start')):
|
elif(cmd[0].startswith('/start')):
|
||||||
print('/start')
|
|
||||||
telegram.sendMessage("Ascolta, io mi starto quando mi pare. Anzi, quando Steffo ha voglia di aprirmi.", sby)
|
telegram.sendMessage("Ascolta, io mi starto quando mi pare. Anzi, quando Steffo ha voglia di aprirmi.", sby)
|
||||||
elif(cmd[0].startswith('/playing')):
|
elif(cmd[0].startswith('/playing')):
|
||||||
print('/playing ...')
|
|
||||||
if(len(cmd) >= 2):
|
if(len(cmd) >= 2):
|
||||||
n = steam.getNumberOfCurrentPlayers(cmd[1])
|
n = steam.getNumberOfCurrentPlayers(cmd[1])
|
||||||
if(n == None):
|
if(n == None):
|
||||||
|
@ -28,11 +25,9 @@ while(True):
|
||||||
else:
|
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')):
|
elif(cmd[0].startswith('/saldistim')):
|
||||||
print('/saldistim ...')
|
|
||||||
if(len(cmd) >= 2):
|
if(len(cmd) >= 2):
|
||||||
telegram.sendMessage("Ricerca di offerte di [" + cmd[1] + "](https://isthereanydeal.com/#/search:" + cmd[1].replace(' ', '%20') + ";/scroll:%23gamelist) completata.", sby)
|
telegram.sendMessage("Ricerca di offerte di [" + cmd[1] + "](https://isthereanydeal.com/#/search:" + cmd[1].replace(' ', '%20') + ";/scroll:%23gamelist) completata.", sby)
|
||||||
else:
|
else:
|
||||||
telegram.sendMessage(chr(9888) + " Non hai specificato un gioco! [Visualizza tutte le offerte](https://isthereanydeal.com/#/search:.;/scroll:%23gamelist).", sby)
|
telegram.sendMessage(chr(9888) + " Non hai specificato un gioco! [Visualizza tutte le offerte](https://isthereanydeal.com/#/search:.;/scroll:%23gamelist).", sby)
|
||||||
elif(cmd[0].startswith('/rage')):
|
elif(cmd[0].startswith('/rage')):
|
||||||
print('/rage')
|
|
||||||
telegram.sendDocument("BQADAgAD3wEAAh8GgAE6ZnLP5_gFMwI", sby)
|
telegram.sendDocument("BQADAgAD3wEAAh8GgAE6ZnLP5_gFMwI", sby)
|
Loading…
Reference in a new issue