mirror of
https://github.com/RYGhub/royal-mifia.git
synced 2024-11-25 15:14:18 +00:00
Praticamente niente
This commit is contained in:
parent
d3ddf41715
commit
1832da7610
2 changed files with 12 additions and 2 deletions
4
main.py
4
main.py
|
@ -849,9 +849,9 @@ updater.dispatcher.add_handler(CommandHandler('load', load))
|
||||||
updater.dispatcher.add_handler(CommandHandler('delete', delete))
|
updater.dispatcher.add_handler(CommandHandler('delete', delete))
|
||||||
updater.dispatcher.add_handler(CommandHandler('debugchangerole', debugchangerole))
|
updater.dispatcher.add_handler(CommandHandler('debugchangerole', debugchangerole))
|
||||||
updater.dispatcher.add_handler(CallbackQueryHandler(inlinekeyboard))
|
updater.dispatcher.add_handler(CallbackQueryHandler(inlinekeyboard))
|
||||||
updater.start_polling()
|
|
||||||
print("Bot avviato!")
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
updater.start_polling()
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
updater.idle()
|
updater.idle()
|
||||||
|
|
10
strings.py
10
strings.py
|
@ -385,6 +385,16 @@ error_no_votes_on_first_day = "\U000026A0 I Royal non votano nella prima giornat
|
||||||
error_missing_parameters = "\U000026A0 Mancano uno o più parametri.\n" \
|
error_missing_parameters = "\U000026A0 Mancano uno o più parametri.\n" \
|
||||||
"Controlla la sintassi del comando e riprova."
|
"Controlla la sintassi del comando e riprova."
|
||||||
|
|
||||||
|
# Critico: Server di telegram Timed Out
|
||||||
|
fatal_bot_timed_out = "\U0001F6D1 **Errore critico:** I server di Telegram non hanno risposto in tempo al messaggio.\n" \
|
||||||
|
"Se una partita era in corso, potrebbero essersi creati dei bug.\n" \
|
||||||
|
"E' consigliato cancellarla e ricaricare l'ultimo salvataggio disponibile."
|
||||||
|
|
||||||
|
# Critico: Rate limited
|
||||||
|
fatal_bot_rate_limited = "\U0001F6D1 **Errore critico:** Il bot ha inviato troppe richieste a Telegram ed è stato bloccato.\n" \
|
||||||
|
"Se una partita era in corso, potrebbero essersi creati dei bug.\n" \
|
||||||
|
"E' consigliato attendere 5 minuti, cancellarla e ricaricare l'ultimo salvataggio disponibile."
|
||||||
|
|
||||||
# Lista dei possibili nomi di una partita
|
# Lista dei possibili nomi di una partita
|
||||||
if __debug__:
|
if __debug__:
|
||||||
names_list = ["Dev"]
|
names_list = ["Dev"]
|
||||||
|
|
Loading…
Reference in a new issue