mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Richiesta di fulz!
This commit is contained in:
parent
43626b5a26
commit
f74303b072
2 changed files with 3 additions and 2 deletions
3
bot.py
3
bot.py
|
@ -2,6 +2,7 @@
|
|||
import telegram
|
||||
import steam
|
||||
|
||||
print("Bot avviato!")
|
||||
while(True):
|
||||
#Guarda il comando ricevuto.
|
||||
msg = telegram.getUpdates()
|
||||
|
@ -27,4 +28,4 @@ while(True):
|
|||
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)
|
||||
telegram.sendMessage(chr(9888) + " Non hai specificato un gioco! [Visualizza tutte le offerte](https://isthereanydeal.com/#/search:.;/scroll:%23gamelist).", sby)
|
|
@ -10,7 +10,7 @@ def getUpdates():
|
|||
parametri = {
|
||||
'offset': filemanager.readFile("lastid.txt"), #Update ID del messaggio da leggere
|
||||
'limit': 1, #Numero di messaggi da ricevere alla volta, lasciare 1
|
||||
'timeout': 1800, #Secondi da mantenere attiva la richiesta se non c'e' nessun messaggio
|
||||
'timeout': 300, #Secondi da mantenere attiva la richiesta se non c'e' nessun messaggio
|
||||
}
|
||||
while(True):
|
||||
data = requests.get("https://api.telegram.org/bot" + telegramtoken + "/getUpdates", params=parametri).json()
|
||||
|
|
Loading…
Reference in a new issue