mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
🎺🎺 🎺🎺 🎺🎺🎺🎺
🎺🎺🎺🎺🎺🎺🎺🎺
This commit is contained in:
parent
6461a15068
commit
1c1eb78a33
2 changed files with 13 additions and 2 deletions
6
bot.py
6
bot.py
|
@ -24,7 +24,6 @@ while(True):
|
|||
if(n == None):
|
||||
telegram.sendMessage(chr(9888) + " L'app specificata non esiste!", sby)
|
||||
else:
|
||||
if(cmd[1]
|
||||
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 <AppID>.", sby)
|
||||
|
@ -33,4 +32,7 @@ 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! [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')):
|
||||
print('/rage')
|
||||
telegram.sendAudio("BQADAgAD3QEAAh8GgAFVqHhBraLsRwI", sby)
|
|
@ -44,6 +44,15 @@ def forwardMessage(msg, sentby, to):
|
|||
#Manda la richiesta ai server di Telegram.
|
||||
requests.get("https://api.telegram.org/bot" + telegramtoken + "/forwardMessage", params=parametri)
|
||||
|
||||
def sendAudio(audio, to):
|
||||
"""Manda un audio a una chat."""
|
||||
parametri = {
|
||||
'chat_id': to,
|
||||
'audio': audio,
|
||||
}
|
||||
#Manda la richiesta ai server di Telegram.
|
||||
requests.get("https://api.telegram.org/bot" + telegramtoken + "/sendAudio", params=parametri)
|
||||
|
||||
def sendLocation(lat, long, to):
|
||||
"""Manda una posizione sulla mappa."""
|
||||
#Parametri del messaggio
|
||||
|
|
Loading…
Reference in a new issue