mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Finisco dopo.
This commit is contained in:
parent
3a77472090
commit
9024cf7a38
1 changed files with 12 additions and 4 deletions
16
royalbot.py
16
royalbot.py
|
@ -6,6 +6,11 @@ import time #Modulo per mettere in pausa il programma
|
||||||
#Ultimo messaggio mandato dal bot.
|
#Ultimo messaggio mandato dal bot.
|
||||||
lastmsg = ""
|
lastmsg = ""
|
||||||
|
|
||||||
|
#Inizializzazione keys
|
||||||
|
token = ""
|
||||||
|
steamtoken = ""
|
||||||
|
osutoken = ""
|
||||||
|
|
||||||
#Elenco degli steamid e degli username di telegram.
|
#Elenco degli steamid e degli username di telegram.
|
||||||
steamids = {
|
steamids = {
|
||||||
'@Steffo': 76561198034314260,
|
'@Steffo': 76561198034314260,
|
||||||
|
@ -86,7 +91,12 @@ def getSteamStatus(steamid):
|
||||||
#Manda la richiesta ai server di Telegram e convertila in un dizionario
|
#Manda la richiesta ai server di Telegram e convertila in un dizionario
|
||||||
r = requests.get("http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/", params=parametri).json()
|
r = requests.get("http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/", params=parametri).json()
|
||||||
return r
|
return r
|
||||||
|
|
||||||
|
#Caricamento delle API Keys
|
||||||
|
token = readFile(telegramapi.txt)
|
||||||
|
steamtoken = readFile(steamapi.txt)
|
||||||
|
osutoken = readFile(osuapi.txt)
|
||||||
|
|
||||||
#Il loop del bot
|
#Il loop del bot
|
||||||
while(True):
|
while(True):
|
||||||
#Ricevi gli ultimi messaggi
|
#Ricevi gli ultimi messaggi
|
||||||
|
@ -145,6 +155,4 @@ while(True):
|
||||||
else:
|
else:
|
||||||
sendMessage(name + " e' " + text + ".", msg['chat']['id'], msg['from']['id'])
|
sendMessage(name + " e' " + text + ".", msg['chat']['id'], msg['from']['id'])
|
||||||
else:
|
else:
|
||||||
sendMessage(unichr(9888) + " Lo SteamID o l'username non esiste!", msg['chat']['id'], msg['from']['id'])
|
sendMessage(unichr(9888) + " Lo SteamID o l'username non esiste!", msg['chat']['id'], msg['from']['id'])
|
||||||
#Controlla lo stato di una persona su Osu, because why not
|
|
||||||
if
|
|
Loading…
Reference in a new issue