1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-27 21:44:21 +00:00
This commit is contained in:
Steffo 2016-02-05 19:15:16 +01:00
parent b925c01843
commit 8ab7183012

10
bot.py
View file

@ -531,7 +531,7 @@ while True:
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!", sentin, source)
elif text.startswith('/no'): elif text.startswith('/no'):
print("@" + username + ": /no ") print("@" + username + ": /no ")
if incorso is not None: if incorso is not None:
@ -539,7 +539,7 @@ while True:
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!", sentin, source)
elif text.startswith('/astieniti'): elif text.startswith('/astieniti'):
print("@" + username + ": /astieniti ") print("@" + username + ": /astieniti ")
if incorso is not None: if incorso is not None:
@ -547,21 +547,21 @@ while True:
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!", sentin, source)
elif text.startswith('/domanda'): elif text.startswith('/domanda'):
print("@" + username + ": /domanda ") print("@" + username + ": /domanda ")
if incorso is not None: if incorso is not None:
if incorso.chat == sentin: if incorso.chat == sentin:
incorso.ask() incorso.ask()
else: else:
telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!") telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!", sentin, source)
elif text.startswith('/risultati'): elif text.startswith('/risultati'):
print("@" + username + ": /risultati ") print("@" + username + ": /risultati ")
if incorso is not None: if incorso is not None:
if incorso.chat == sentin: if incorso.chat == sentin:
incorso.showresults() incorso.showresults()
else: else:
telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!") telegram.sendmessage(chr(9888) + " Non è in corso nessuna votazione!", sentin, source)
elif text.startswith('/cv'): elif text.startswith('/cv'):
print("@" + username + ": /cv ") print("@" + username + ": /cv ")
# Informa Telegram che il messaggio è stato ricevuto. # Informa Telegram che il messaggio è stato ricevuto.