mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-27 21:44:21 +00:00
Tolto osuplayers
This commit is contained in:
parent
50cfc93baa
commit
daada533ff
1 changed files with 2 additions and 23 deletions
25
bot.py
25
bot.py
|
@ -91,27 +91,6 @@ audiolist = {
|
||||||
'omiodio': 'BQADAgADMgIAAh8GgAFe9-lVwzdFzAI',
|
'omiodio': 'BQADAgADMgIAAh8GgAFe9-lVwzdFzAI',
|
||||||
}
|
}
|
||||||
|
|
||||||
# Dizionario con i nomi utenti di osu!
|
|
||||||
# Se qualcuno cambia nome utente di Telegram, lo cambi anche QUI.
|
|
||||||
osuplayers = {
|
|
||||||
'steffo': 'SteffoRYG',
|
|
||||||
'evilbalu': 'NemesisRYG',
|
|
||||||
'fultz': 'ftz99',
|
|
||||||
'ilgattopardo': 'gattopardo',
|
|
||||||
'frankrekt': 'FrankezRYG',
|
|
||||||
'tiztiztiz': 'fedececco',
|
|
||||||
'acterryg': 'Acter1',
|
|
||||||
'maxsensei': 'MaxSensei',
|
|
||||||
'doctorkawaii': 'ImHeisenberg',
|
|
||||||
'thevagginadestroyer': 'barboll',
|
|
||||||
'cosimo03': 'Cosimo03',
|
|
||||||
'albertino04': 'Alby1',
|
|
||||||
'voltaggio': 'voltaggio',
|
|
||||||
'tauei': 'tauei',
|
|
||||||
'boni3099': 'boni3099',
|
|
||||||
'mrdima98': 'MRdima98',
|
|
||||||
}
|
|
||||||
|
|
||||||
# Elenco di username dei membri della RYG
|
# Elenco di username dei membri della RYG
|
||||||
royalgames = json.loads(filemanager.readfile("db.json"))
|
royalgames = json.loads(filemanager.readfile("db.json"))
|
||||||
|
|
||||||
|
@ -492,7 +471,7 @@ while True:
|
||||||
# Stringa utilizzata per ottenere informazioni su tutti gli utenti in una sola richiesta a steam
|
# Stringa utilizzata per ottenere informazioni su tutti gli utenti in una sola richiesta a steam
|
||||||
userids = str()
|
userids = str()
|
||||||
for membro in royalgames:
|
for membro in royalgames:
|
||||||
if "steam" in membro:
|
if "steam" in royalgames[membro]:
|
||||||
userids += str(royalgames[membro]["steam"]) + ','
|
userids += str(royalgames[membro]["steam"]) + ','
|
||||||
tosend = "*Online ora:*\n"
|
tosend = "*Online ora:*\n"
|
||||||
r = steam.getplayersummaries(userids)
|
r = steam.getplayersummaries(userids)
|
||||||
|
@ -650,6 +629,6 @@ while True:
|
||||||
print("@" + username + " bloccato.")
|
print("@" + username + " bloccato.")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
telegram.sendmessage(chr(9762) + " *ERRORE CRITICO:\n*"
|
telegram.sendmessage(chr(9762) + " *ERRORE CRITICO:\n*"
|
||||||
"{0}\n".format(repr(e.args)), -2141322)
|
"{0}\n".format(repr(e)), -2141322)
|
||||||
print("ERRORE CRITICO:\n"
|
print("ERRORE CRITICO:\n"
|
||||||
"{0}".format(repr(e)))
|
"{0}".format(repr(e)))
|
||||||
|
|
Loading…
Reference in a new issue