mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-27 13:34:28 +00:00
bugfix
This commit is contained in:
parent
f74303b072
commit
93f55639c8
1 changed files with 5 additions and 1 deletions
6
bot.py
6
bot.py
|
@ -6,16 +6,19 @@ print("Bot avviato!")
|
|||
while(True):
|
||||
#Guarda il comando ricevuto.
|
||||
msg = telegram.getUpdates()
|
||||
print(msg['text'])
|
||||
cmd = msg['text'].split(' ', 1)
|
||||
sby = msg['chat']['id']
|
||||
if(cmd[0].startswith('/ahnonlosoio')):
|
||||
print('/ahnonlosoio')
|
||||
telegram.sendMessage("Ah, non lo so nemmeno io!", sby)
|
||||
elif(cmd[0].startswith('/ehoh')):
|
||||
print('/ehoh')
|
||||
telegram.sendMessage("Eh, oh. Sono cose che capitano.", sby)
|
||||
elif(cmd[0].startswith('/start')):
|
||||
print('/start')
|
||||
telegram.sendMessage("Ascolta, io mi starto quando mi pare. Anzi, quando @Steffo ha voglia di aprirmi.", sby)
|
||||
elif(cmd[0].startswith('/playing')):
|
||||
print('/playing ...')
|
||||
if(len(cmd) >= 2):
|
||||
n = steam.getNumberOfCurrentPlayers(cmd[1])
|
||||
if(n == None):
|
||||
|
@ -25,6 +28,7 @@ while(True):
|
|||
else:
|
||||
telegram.sendMessage(chr(9888) + " Non hai specificato un AppID!\nLa sintassi corretta è /playing <AppID>.", sby)
|
||||
elif(cmd[0].startswith('/saldistim')):
|
||||
print('/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:
|
||||
|
|
Loading…
Reference in a new issue