mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
Messaggi di errore
che potrebbero o non potrebbero andare
This commit is contained in:
parent
44faeabf0e
commit
b925c01843
1 changed files with 14 additions and 14 deletions
10
bot.py
10
bot.py
|
@ -525,40 +525,40 @@ while True:
|
||||||
telegram.sendmessage(chr(9888) + " Non hai i permessi necessari per creare una nuova votazione.",
|
telegram.sendmessage(chr(9888) + " Non hai i permessi necessari per creare una nuova votazione.",
|
||||||
sentin, source)
|
sentin, source)
|
||||||
elif text.startswith('/si'):
|
elif text.startswith('/si'):
|
||||||
|
print("@" + username + ": /si ")
|
||||||
if incorso is not None:
|
if incorso is not None:
|
||||||
if incorso.chat == sentin:
|
if incorso.chat == sentin:
|
||||||
print("@" + username + ": /si ")
|
|
||||||
incorso.register(username.lower(), 1)
|
incorso.register(username.lower(), 1)
|
||||||
telegram.sendmessage("Votazione registrata!", sentin, source)
|
telegram.sendmessage("Votazione registrata!", sentin, source)
|
||||||
else:
|
else:
|
||||||
telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!")
|
telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!")
|
||||||
elif text.startswith('/no'):
|
elif text.startswith('/no'):
|
||||||
|
print("@" + username + ": /no ")
|
||||||
if incorso is not None:
|
if incorso is not None:
|
||||||
if incorso.chat == sentin:
|
if incorso.chat == sentin:
|
||||||
print("@" + username + ": /no ")
|
|
||||||
incorso.register(username.lower(), 2)
|
incorso.register(username.lower(), 2)
|
||||||
telegram.sendmessage("Votazione registrata!", sentin, source)
|
telegram.sendmessage("Votazione registrata!", sentin, source)
|
||||||
else:
|
else:
|
||||||
telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!")
|
telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!")
|
||||||
elif text.startswith('/astieniti'):
|
elif text.startswith('/astieniti'):
|
||||||
|
print("@" + username + ": /astieniti ")
|
||||||
if incorso is not None:
|
if incorso is not None:
|
||||||
if incorso.chat == sentin:
|
if incorso.chat == sentin:
|
||||||
print("@" + username + ": /astieniti ")
|
|
||||||
incorso.register(username.lower(), 3)
|
incorso.register(username.lower(), 3)
|
||||||
telegram.sendmessage("Votazione registrata!", sentin, source)
|
telegram.sendmessage("Votazione registrata!", sentin, source)
|
||||||
else:
|
else:
|
||||||
telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!")
|
telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!")
|
||||||
elif text.startswith('/domanda'):
|
elif text.startswith('/domanda'):
|
||||||
|
print("@" + username + ": /domanda ")
|
||||||
if incorso is not None:
|
if incorso is not None:
|
||||||
if incorso.chat == sentin:
|
if incorso.chat == sentin:
|
||||||
print("@" + username + ": /domanda ")
|
|
||||||
incorso.ask()
|
incorso.ask()
|
||||||
else:
|
else:
|
||||||
telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!")
|
telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!")
|
||||||
elif text.startswith('/risultati'):
|
elif text.startswith('/risultati'):
|
||||||
|
print("@" + username + ": /risultati ")
|
||||||
if incorso is not None:
|
if incorso is not None:
|
||||||
if incorso.chat == sentin:
|
if incorso.chat == sentin:
|
||||||
print("@" + username + ": /risultati ")
|
|
||||||
incorso.showresults()
|
incorso.showresults()
|
||||||
else:
|
else:
|
||||||
telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!")
|
telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!")
|
||||||
|
|
Loading…
Reference in a new issue