mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
Tante, tante modifiche
This commit is contained in:
parent
b2a907078f
commit
225f400c6f
1 changed files with 136 additions and 136 deletions
272
bot.py
272
bot.py
|
@ -9,18 +9,8 @@ import sys
|
||||||
# Playlist di /rage, si riempie quando è vuota
|
# Playlist di /rage, si riempie quando è vuota
|
||||||
rage = []
|
rage = []
|
||||||
|
|
||||||
# Elenco degli audio di /wololo
|
# TODO: Rimettere gli audio di Wololo
|
||||||
wololo = ['BQADAgADWAIAAh8GgAGP53EPnRyiYwI', 'BQADAgADWQIAAh8GgAHIF861pVS1aAI', 'BQADAgADWgIAAh8GgAHdq5n4ZJwVBQI',
|
wololo = []
|
||||||
'BQADAgADWwIAAh8GgAFBI_HmkOU-PgI', 'BQADAgADXAIAAh8GgAFjAmhg3-IOIQI', 'BQADAgADXQIAAh8GgAFf8P21MBzx3gI',
|
|
||||||
'BQADAgADXgIAAh8GgAE5LOgedb-1RQI', 'BQADAgADYAIAAh8GgAFiAcVphkyzRQI', 'BQADAgADYQIAAh8GgAFnZa5sWEQv6QI',
|
|
||||||
'BQADAgADYgIAAh8GgAHdnlwB6ATJogI', 'BQADAgADYwIAAh8GgAGMuHLrY94CXwI', 'BQADAgADZAIAAh8GgAE7SxHEvU6pLAI',
|
|
||||||
'BQADAgADZQIAAh8GgAFfUK7GPQHLhgI', 'BQADAgADZgIAAh8GgAGDx56hsKHh0wI', 'BQADAgADZwIAAh8GgAF3etjqkzFDxAI',
|
|
||||||
'BQADAgADaAIAAh8GgAHCsHs0NNMnAwI', 'BQADAgADaQIAAh8GgAGEQP7WW-gVhAI', 'BQADAgADagIAAh8GgAHrOerh1qI1jgI',
|
|
||||||
'BQADAgADawIAAh8GgAFR8ckrXWOw6gI', 'BQADAgADbAIAAh8GgAFaQm4cTda94AI', 'BQADAgADbQIAAh8GgAG2X-qRdGpmewI',
|
|
||||||
'BQADAgADbgIAAh8GgAHzrM2auYrj-AI', 'BQADAgADbwIAAh8GgAFq5jafCpl8PAI', 'BQADAgADcAIAAh8GgAGY69r5eir53QI',
|
|
||||||
'BQADAgADcQIAAh8GgAH2Uj-JSM-4BwI', 'BQADAgADcgIAAh8GgAFGt6FRsV9kmAI', 'BQADAgADcwIAAh8GgAHSw9dKaqbZjgI',
|
|
||||||
'BQADAgADdAIAAh8GgAF0IeDeuxaQ-AI', 'BQADAgADdQIAAh8GgAHJRO6c5-bodwI', 'BQADAgADdgIAAh8GgAEyyCSLdV_dMgI',
|
|
||||||
'BQADAgADdwIAAh8GgAHrLJKjv16lWwI', 'BQADAgADeAIAAh8GgAFkaz8qZREelQI', 'BQADAgADeQIAAh8GgAG1rPQHEIjf6AI']
|
|
||||||
|
|
||||||
# Dizionario con i nomi utenti di osu!
|
# Dizionario con i nomi utenti di osu!
|
||||||
# Se qualcuno cambia nome utente di Telegram, lo cambi anche QUI.
|
# Se qualcuno cambia nome utente di Telegram, lo cambi anche QUI.
|
||||||
|
@ -45,180 +35,185 @@ osunames = {
|
||||||
|
|
||||||
random.seed()
|
random.seed()
|
||||||
|
|
||||||
# Ciclo principale del bot! Mettete qui la roba che deve fare.
|
# Ciclo principale del bot
|
||||||
print("Bot avviato!")
|
print("Bot avviato!")
|
||||||
while True:
|
while True:
|
||||||
# Guarda il comando ricevuto.
|
# Guarda il comando ricevuto.
|
||||||
msg = telegram.getupdates()
|
msg = telegram.getupdates()
|
||||||
# Se il messaggio è un comando...
|
# Se il messaggio non è una notifica di servizio...
|
||||||
if 'text' in msg:
|
if 'text' in msg:
|
||||||
# Dividilo con degli spazi e metti il comando in cmd[0] e gli argomenti in cmd[1]
|
# Salvatelo in una stringa
|
||||||
cmd = msg['text'].split(' ', 1)
|
text = msg['text']
|
||||||
# Guarda l'ID della chat in cui è stato inviato
|
# Guarda l'ID della chat in cui è stato inviato
|
||||||
sby = msg['chat']['id']
|
sentin = msg['chat']['id']
|
||||||
# Nome da visualizzare nella console per capire chi accidenti è che invia messaggi strani
|
# Nome da visualizzare nella console per capire chi accidenti è che invia messaggi strani
|
||||||
if 'username' in msg['from']:
|
if 'username' in msg['from']:
|
||||||
# Visualizza l'username se esiste
|
# Salva l'username se esiste
|
||||||
unm = '@' + msg['from']['username']
|
username = msg['from']['username']
|
||||||
else:
|
else:
|
||||||
# Altrimenti, visualizza l'userID
|
# Altrimenti, salva l'userID
|
||||||
unm = str(msg['from']['id'])
|
username = str(msg['from']['id'])
|
||||||
# Riconosci il comando.
|
# Riconosci il comando.
|
||||||
# Viene usato startswith perchè il comando potrebbe anche essere inviato in forma /ciao@RoyalBot.
|
# Viene usato startswith perchè il comando potrebbe anche essere inviato in forma /ciao@RoyalBot.
|
||||||
if cmd[0].startswith('/ahnonlosoio'):
|
if text.startswith('/ahnonlosoio'):
|
||||||
print(unm + ": /ahnonlosoio")
|
print("@" + username + ": /ahnonlosoio")
|
||||||
telegram.sendmessage("Ah, non lo so nemmeno io!", sby)
|
telegram.sendmessage("Ah, non lo so nemmeno io!", sentin)
|
||||||
elif cmd[0].startswith('/ehoh'):
|
elif text.startswith('/ehoh'):
|
||||||
print(unm + ": /ehoh")
|
print("@" + username + ": /ehoh")
|
||||||
telegram.sendmessage("Eh, oh. Sono cose che capitano.", sby)
|
telegram.sendmessage("Eh, oh. Sono cose che capitano.", sentin)
|
||||||
elif cmd[0].startswith('/playing'):
|
elif text.startswith('/playing'):
|
||||||
print(unm + ": /playing")
|
print("@" + username + ": /playing")
|
||||||
|
cmd = text.split(" ")
|
||||||
|
# Se è stato specificato un AppID...
|
||||||
if len(cmd) >= 2:
|
if len(cmd) >= 2:
|
||||||
n = steam.getnumberofcurrentplayers(cmd[1])
|
n = steam.getnumberofcurrentplayers(cmd[1])
|
||||||
|
# Se viene ricevuta una risposta...
|
||||||
if n is None:
|
if n is None:
|
||||||
telegram.sendmessage(chr(9888) + " L'app specificata non esiste!", sby)
|
telegram.sendmessage(chr(9888) + " L'app specificata non esiste!", sentin)
|
||||||
else:
|
else:
|
||||||
telegram.sendmessage('In questo momento, ' + str(n) + ' persone stanno giocando a [' + cmd[1] +
|
telegram.sendmessage('In questo momento, ' + str(n) + ' persone stanno giocando a [' + cmd[1] +
|
||||||
'](https://steamdb.info/app/' + cmd[1] + '/graphs/)', sby)
|
'](https://steamdb.info/app/' + cmd[1] + '/graphs/)', sentin)
|
||||||
else:
|
else:
|
||||||
telegram.sendmessage(chr(9888) + ' Non hai specificato un AppID!\n' +
|
telegram.sendmessage(chr(9888) + ' Non hai specificato un AppID!\n'
|
||||||
'La sintassi corretta è /playing <AppID>.', sby)
|
'La sintassi corretta è /playing <AppID>.', sentin)
|
||||||
elif cmd[0].startswith('/saldi'):
|
elif text.startswith('/saldi'):
|
||||||
print(unm + ": /saldi")
|
print("@" + username + ": /saldi")
|
||||||
if len(cmd) >= 2:
|
cmd = text.split(" ", 1)
|
||||||
|
if len(cmd) == 2:
|
||||||
telegram.sendmessage(
|
telegram.sendmessage(
|
||||||
'Visualizza le offerte di ' +
|
'Visualizza le offerte di '
|
||||||
'[' + cmd[1] + '](https://isthereanydeal.com/#/search:' + cmd[1].replace(' ', '%20') +
|
'[' + cmd[1] + '](https://isthereanydeal.com/#/search:' + cmd[1].replace(' ', '%20') +
|
||||||
";/scroll:%23gamelist).", sby)
|
";/scroll:%23gamelist).", sentin)
|
||||||
else:
|
else:
|
||||||
telegram.sendmessage(chr(9888) +
|
telegram.sendmessage(chr(9888) +
|
||||||
' Non hai specificato un gioco! ' +
|
"Non hai specificato un gioco!"
|
||||||
'[Visualizza tutto](https://isthereanydeal.com/#/search:.;/scroll:%23gamelist).',
|
"[Visualizza tutte le offerte]"
|
||||||
sby)
|
"(https://isthereanydeal.com/#/search:.;/scroll:%23gamelist).",
|
||||||
elif cmd[0].startswith('/audio'):
|
sentin)
|
||||||
# Se qualcuno ne ha voglia, qui si potrebbe aggiungere la selezione degli audio come argomento,
|
# elif text.startswith('/audio'):
|
||||||
# invece che fare una playlist casuale...
|
# # Se qualcuno ne ha voglia, qui si potrebbe aggiungere la selezione degli audio come argomento,
|
||||||
# Se non ci sono rage nella playlist, riempila e mescolala!
|
# # invece che fare una playlist casuale...
|
||||||
if len(rage) <= 0:
|
# # Se non ci sono rage nella playlist, riempila e mescolala!
|
||||||
# Elenco degli audio disponibili
|
# if len(rage) <= 0:
|
||||||
rage = ['BQADAgADEgIAAh8GgAGyLs6mbzxpVAI', 'BQADAgADEwIAAh8GgAGrT-MlTymm5gI',
|
# # TODO: Rimettere gli audio di /audio
|
||||||
'BQADAgADEQIAAh8GgAH62SrNqgXB6AI', 'BQADAgADEAIAAh8GgAHTLEngwtqr_QI',
|
# rage = []
|
||||||
'BQADAgAD3wEAAh8GgAE6ZnLP5_gFMwI', 'BQADAgAD5AEAAh8GgAGu0FpK_X2DuQI',
|
# random.shuffle(rage)
|
||||||
'BQADAgAD5gEAAh8GgAGvUTJ9meZixwI', 'BQADAgAD5wEAAh8GgAHJSoUnCr9WxwI',
|
# # Estrai un audio a caso tra quelli nella playlist e rimuovilo.
|
||||||
'BQADAgAD6QEAAh8GgAExL8N1AWkDjgI', 'BQADAgAD6wEAAh8GgAFtkzazUqUEtwI',
|
# ragesend = rage.pop()
|
||||||
'BQADAgAD9AEAAh8GgAE427GcA8FCqQI', 'BQADAgADMgIAAh8GgAEpusE7OCOXYgI',
|
# print("@" + username + ": /audio")
|
||||||
'BQADAgADMwIAAh8GgAFffavzkvOkKAI', 'BQADAgADTAIAAh8GgAEgantYpHT5IwI',
|
# telegram.senddocument(ragesend, sentin)
|
||||||
'BQADAgADpgIAAh8GgAFu0RmpD3Mw7wI', 'BQADAgADpwIAAh8GgAGUgGD5t1omDwI',
|
# elif text.startswith('/sbam'):
|
||||||
'BQADAgADqAIAAh8GgAFNZ_rptavtKAI', 'BQADAgADqQIAAh8GgAGtd74-VO-J1AI',
|
# # TODO: Rimettere a posto /sbam
|
||||||
'BQADAgADqgIAAh8GgAGa5MDYCi7viwI', 'BQADAgADqwIAAh8GgAGM3vOELWDm3AI',
|
# print("@" + username + ": /sbam")
|
||||||
'BQADAgADrAIAAh8GgAHF15LlwjLMbwI', 'BQADAgADrgIAAh8GgAE2T5cM_TCQVQI',
|
# telegram.senddocument('BQADAgADTQIAAh8GgAGj0jKIrpTgvQI', sentin)
|
||||||
'BQADAgADrwIAAh8GgAGYcc3JtCsZ1AI']
|
# elif text.startswith('/wololo'):
|
||||||
random.shuffle(rage)
|
# print("@" + username + ": /wololo")
|
||||||
# Estrai un audio a caso tra quelli nella playlist e rimuovilo.
|
# if len(cmd) >= 2:
|
||||||
ragesend = rage.pop()
|
# telegram.senddocument(wololo[int(cmd[1]) - 1], sentin)
|
||||||
print(unm + ": /audio")
|
# else:
|
||||||
telegram.senddocument(ragesend, sby)
|
# telegram.senddocument('BQADAgADZwIAAh8GgAF3etjqkzFDxAI', sentin)
|
||||||
elif cmd[0].startswith('/sbam'):
|
elif text.startswith('/osu'):
|
||||||
print(unm + ": /sbam")
|
print("@" + username + ": /osu")
|
||||||
telegram.senddocument('BQADAgADTQIAAh8GgAGj0jKIrpTgvQI', sby)
|
# Trova il nome utente
|
||||||
elif cmd[0].startswith('/wololo'):
|
cmd = text.split(' ', 1)
|
||||||
print(unm + ": /wololo")
|
|
||||||
if len(cmd) >= 2:
|
if len(cmd) >= 2:
|
||||||
telegram.senddocument(wololo[int(cmd[1]) - 1], sby)
|
# Trova la modalità
|
||||||
else:
|
cmd = text.split(' ', 2)
|
||||||
telegram.senddocument('BQADAgADZwIAAh8GgAF3etjqkzFDxAI', sby)
|
|
||||||
elif cmd[0].startswith('/osu'):
|
|
||||||
print(unm + ": /osu")
|
|
||||||
if len(cmd) >= 2:
|
|
||||||
cmd = msg['text'].split(' ', 2)
|
|
||||||
if len(cmd) >= 3:
|
if len(cmd) >= 3:
|
||||||
|
# Modalità specificata
|
||||||
mode = int(cmd[2])
|
mode = int(cmd[2])
|
||||||
else:
|
else:
|
||||||
|
# Osu! normale
|
||||||
mode = 0
|
mode = 0
|
||||||
r = osu.getuserrecent(cmd[1], mode)
|
r = osu.getuserrecent(cmd[1], mode)
|
||||||
if mode == 0:
|
if mode == 0:
|
||||||
telegram.sendmessage("*Osu!*\n" +
|
telegram.sendmessage("*Osu!*\n"
|
||||||
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
||||||
'beatmap_id'] +
|
'beatmap_id'] +
|
||||||
")\n*" + r['rank'] + "*\n*Punti*: " + r['score'] + "\n" +
|
")\n*" + r['rank'] + "*\n*Punti*: " + r['score'] + "\n"
|
||||||
"*Combo* x" + r['maxcombo'] + "\n" +
|
"*Combo* x" + r['maxcombo'] + "\n"
|
||||||
"*300*: " + r['count300'] + "\n" +
|
"*300*: " + r['count300'] + "\n"
|
||||||
"*100*: " + r['count100'] + "\n" +
|
"*100*: " + r['count100'] + "\n"
|
||||||
"*50*: " + r['count50'] + "\n" +
|
"*50*: " + r['count50'] + "\n"
|
||||||
"*Awesome*: " + r['countkatu'] + "\n" +
|
"*Awesome*: " + r['countkatu'] + "\n"
|
||||||
"*Good*: " + r['countgeki'] + "\n" +
|
"*Good*: " + r['countgeki'] + "\n"
|
||||||
"*Miss*: " + r['countmiss'], sby)
|
"*Miss*: " + r['countmiss'], sentin)
|
||||||
elif mode == 1:
|
elif mode == 1:
|
||||||
telegram.sendmessage("*Taiko*\n" +
|
telegram.sendmessage("*Taiko*\n"
|
||||||
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
||||||
'beatmap_id'] +
|
'beatmap_id'] +
|
||||||
")\n*" + r['rank'] + "*\n*Punti*: " + r['score'] + "\n" +
|
")\n*" + r['rank'] + "*\n*Punti*: " + r['score'] + "\n"
|
||||||
"*Combo* x" + r['maxcombo'] + "\n" +
|
"*Combo* x" + r['maxcombo'] + "\n"
|
||||||
"*Great*: " + r['count300'] + "\n" +
|
"*Great*: " + r['count300'] + "\n"
|
||||||
"*Good*: " + r['count100'] + "\n" +
|
"*Good*: " + r['count100'] + "\n"
|
||||||
"_Large_ *Great*: " + r['countkatu'] + "\n" +
|
"_Large_ *Great*: " + r['countkatu'] + "\n"
|
||||||
"_Large_ *Good*: " + r['countgeki'] + "\n" +
|
"_Large_ *Good*: " + r['countgeki'] + "\n"
|
||||||
"*Bad*: " + r['countmiss'], sby)
|
"*Bad*: " + r['countmiss'], sentin)
|
||||||
elif mode == 2:
|
elif mode == 2:
|
||||||
telegram.sendmessage("*Catch the Beat*\n" +
|
telegram.sendmessage("*Catch the Beat*\n"
|
||||||
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
||||||
'beatmap_id'] +
|
'beatmap_id'] +
|
||||||
")\n*" + r['rank'] + "*\n*Punti*: " + r['score'] + "\n" +
|
")\n*" + r['rank'] + "*\n*Punti*: " + r['score'] + "\n"
|
||||||
"*Combo* x" + r['maxcombo'] + "\n" +
|
"*Combo* x" + r['maxcombo'] + "\n"
|
||||||
"*Fruit*: " + r['count300'] + "\n" +
|
"*Fruit*: " + r['count300'] + "\n"
|
||||||
"*Droplet* _tick_: " + r['count100'] + "\n" +
|
"*Droplet* _tick_: " + r['count100'] + "\n"
|
||||||
"*Droplet* _trail_: " + r['count50'] + "\n" +
|
"*Droplet* _trail_: " + r['count50'] + "\n"
|
||||||
"*Miss*: " + r['countmiss'], sby)
|
"*Miss*: " + r['countmiss'], sentin)
|
||||||
elif mode == 3:
|
elif mode == 3:
|
||||||
telegram.sendmessage("*Osu!mania*\n" +
|
telegram.sendmessage("*Osu!mania*\n" +
|
||||||
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
||||||
'beatmap_id'] +
|
'beatmap_id'] + ")\n*" + r['rank'] +
|
||||||
")\n*" + r['rank'] + "*\n*Punti*: " + r['score'] + "\n" +
|
"*\n*Punti*: " + r['score'] + "\n"
|
||||||
"*Combo* x" + r['maxcombo'] + "\n" +
|
"*Combo* x" + r['maxcombo'] + "\n"
|
||||||
"_Rainbow_ *300*: " + r['countgeki'] + "\n" +
|
"_Rainbow_ *300*: " + r['countgeki'] + "\n"
|
||||||
"*300*: " + r['count300'] + "\n" +
|
"*300*: " + r['count300'] + "\n"
|
||||||
"*100*: " + r['count100'] + "\n" +
|
"*100*: " + r['count100'] + "\n"
|
||||||
"*200*: " + r['countkatu'] + "\n" +
|
"*200*: " + r['countkatu'] + "\n"
|
||||||
"*50*: " + r['count50'] + "\n" +
|
"*50*: " + r['count50'] + "\n"
|
||||||
"*Miss*: " + r['countmiss'], sby)
|
"*Miss*: " + r['countmiss'], sentin)
|
||||||
else:
|
else:
|
||||||
# E' un po' una scorciatoia eh, peeerò...
|
# E' un po' una scorciatoia eh, peeerò...
|
||||||
if unm[1:].lower() in osunames:
|
if username.lower() in osunames:
|
||||||
r = osu.getuserrecent(osunames[unm[1:].lower()], 0)
|
r = osu.getuserrecent(osunames[username.lower()], 0)
|
||||||
telegram.sendmessage("*Osu!*\n" +
|
telegram.sendmessage("*Osu!*\n"
|
||||||
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
"[Beatmap " + r['beatmap_id'] + "](" + 'https://osu.ppy.sh/b/' + r[
|
||||||
'beatmap_id'] +
|
'beatmap_id'] +
|
||||||
")\n*" + r['rank'] + "*\n*Punti*: " + r['score'] + "\n" +
|
")\n*" + r['rank'] + "*\n*Punti*: " + r['score'] + "\n"
|
||||||
"*Combo* x" + r['maxcombo'] + "\n" +
|
"*Combo* x" + r['maxcombo'] + "\n"
|
||||||
"*300*: " + r['count300'] + "\n" +
|
"*300*: " + r['count300'] + "\n"
|
||||||
"*100*: " + r['count100'] + "\n" +
|
"*100*: " + r['count100'] + "\n"
|
||||||
"*50*: " + r['count50'] + "\n" +
|
"*50*: " + r['count50'] + "\n"
|
||||||
"*Awesome*: " + r['countkatu'] + "\n" +
|
"*Awesome*: " + r['countkatu'] + "\n"
|
||||||
"*Good*: " + r['countgeki'] + "\n" +
|
"*Good*: " + r['countgeki'] + "\n"
|
||||||
"*Miss*: " + r['countmiss'], sby)
|
"*Miss*: " + r['countmiss'], sentin)
|
||||||
elif cmd[0].startswith('/roll'):
|
elif text.startswith('/roll'):
|
||||||
|
print("@" + username + ": /roll")
|
||||||
|
cmd = text.split(' ', 1)
|
||||||
if len(cmd) >= 2:
|
if len(cmd) >= 2:
|
||||||
m = int(cmd[1])
|
m = int(cmd[1])
|
||||||
else:
|
else:
|
||||||
m = 100
|
m = 100
|
||||||
n = random.randrange(m)
|
n = random.randrange(m) + 1
|
||||||
telegram.sendmessage("Numero casuale da 1 a " + str(m) + ":\n*" + str(n) + "*", sby)
|
telegram.sendmessage("Numero casuale da 1 a " + str(m) + ":\n*" + str(n) + "*", sentin)
|
||||||
elif cmd[0].startswith('/automah'):
|
elif text.startswith('/automah'):
|
||||||
print(unm + ": /automah")
|
print("@" + username + ": /automah")
|
||||||
# Quando mi manda l'audio GoToB?
|
# TODO: Mettere l'audio di Tobia
|
||||||
telegram.sendmessage("Automaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa! Devi funzionare, cavolo!", sby)
|
telegram.sendmessage("Automaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa! Devi funzionare, cavolo!", sentin)
|
||||||
elif cmd[0].startswith('/hs'):
|
elif text.startswith('/hs'):
|
||||||
print(unm + ": /hs")
|
print(username + ": /hs")
|
||||||
|
cmd = text.split(" ", 1)
|
||||||
r = None
|
r = None
|
||||||
try:
|
try:
|
||||||
r = hearthstone.card(cmd[1])[0]
|
r = hearthstone.card(cmd[1])
|
||||||
|
# Se ci sono più carte, prendine una a caso!
|
||||||
|
r = r[random.randrange(len(r))]
|
||||||
except ValueError:
|
except ValueError:
|
||||||
telegram.sendmessage(chr(9888) + "La carta specificata non esiste!", sby)
|
telegram.sendmessage(chr(9888) + "La carta specificata non esiste!", sentin)
|
||||||
else:
|
else:
|
||||||
# Si trova nelle bustine
|
# Si trova nelle bustine
|
||||||
if 'howToGet' not in r:
|
if 'howToGet' not in r:
|
||||||
if 'cardSet' in r:
|
if 'cardSet' in r:
|
||||||
r['howToGet'] = "Trovala nelle bustine " + r['cardSet'] + "."
|
r['howToGet'] = "Trovala in " + r['cardSet'] + "."
|
||||||
else:
|
else:
|
||||||
r['howToGet'] = "Inottenibile."
|
r['howToGet'] = "Inottenibile."
|
||||||
# Nessuna classe
|
# Nessuna classe
|
||||||
|
@ -235,6 +230,7 @@ while True:
|
||||||
r['flavor'] = "Nessuna descrizione."
|
r['flavor'] = "Nessuna descrizione."
|
||||||
# Testo principale
|
# Testo principale
|
||||||
text = None
|
text = None
|
||||||
|
# Magie
|
||||||
if r['type'] == "Spell":
|
if r['type'] == "Spell":
|
||||||
text = str("[" + r['name'] + "](" + r['img'] + ") "
|
text = str("[" + r['name'] + "](" + r['img'] + ") "
|
||||||
"(" + r['rarity'] + ")\n" +
|
"(" + r['rarity'] + ")\n" +
|
||||||
|
@ -243,6 +239,7 @@ while True:
|
||||||
r['text'] + "\n" +
|
r['text'] + "\n" +
|
||||||
r['howToGet'] + "\n\n_" +
|
r['howToGet'] + "\n\n_" +
|
||||||
r['flavor'] + "_\n")
|
r['flavor'] + "_\n")
|
||||||
|
# Servitori
|
||||||
elif r['type'] == "Minion":
|
elif r['type'] == "Minion":
|
||||||
text = str("[" + r['name'] + "](" + r['img'] + ") "
|
text = str("[" + r['name'] + "](" + r['img'] + ") "
|
||||||
"(" + r['rarity'] + ")\n" +
|
"(" + r['rarity'] + ")\n" +
|
||||||
|
@ -253,6 +250,7 @@ while True:
|
||||||
r['text'] + "\n" +
|
r['text'] + "\n" +
|
||||||
r['howToGet'] + "\n\n_" +
|
r['howToGet'] + "\n\n_" +
|
||||||
r['flavor'] + "_\n")
|
r['flavor'] + "_\n")
|
||||||
|
# Armi
|
||||||
elif r['type'] == "Weapon":
|
elif r['type'] == "Weapon":
|
||||||
text = str("[" + r['name'] + "](" + r['img'] + ") "
|
text = str("[" + r['name'] + "](" + r['img'] + ") "
|
||||||
"(" + r['rarity'] + ")\n" +
|
"(" + r['rarity'] + ")\n" +
|
||||||
|
@ -263,16 +261,18 @@ while True:
|
||||||
r['text'] + "\n" +
|
r['text'] + "\n" +
|
||||||
r['howToGet'] + "\n\n_" +
|
r['howToGet'] + "\n\n_" +
|
||||||
r['flavor'] + "_\n")
|
r['flavor'] + "_\n")
|
||||||
|
# Potere Eroe
|
||||||
elif r['type'] == "Hero Power":
|
elif r['type'] == "Hero Power":
|
||||||
text = str("[" + r['name'] + "](" + r['img'] + ")\n" +
|
text = str("[" + r['name'] + "](" + r['img'] + ")\n" +
|
||||||
r['playerClass'] + "\n" +
|
r['playerClass'] + "\n" +
|
||||||
str(r['cost']) + " mana\n" +
|
str(r['cost']) + " mana\n" +
|
||||||
r['text'] + "\n")
|
r['text'] + "\n")
|
||||||
|
# Eroe
|
||||||
elif r['type'] == "Hero":
|
elif r['type'] == "Hero":
|
||||||
text = str("[" + r['name'] + "](" + r['img'] + ")\n" +
|
text = str("[" + r['name'] + "](" + r['img'] + ")\n" +
|
||||||
str(r['health']) + " salute\n")
|
str(r['health']) + " salute\n")
|
||||||
telegram.sendmessage(text, sby)
|
telegram.sendmessage(text, sentin)
|
||||||
elif cmd[0].startswith('/restart'):
|
elif text.startswith('/restart'):
|
||||||
if unm == "@Steffo":
|
if username == "Steffo":
|
||||||
telegram.sendmessage("Riavvio confermato.", sby)
|
telegram.sendmessage("Riavvio accettato.", sentin)
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
Loading…
Reference in a new issue