1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

Migliorato /ciaoruozi

This commit is contained in:
Steffo 2016-09-21 15:35:07 +02:00
parent 6dd755229c
commit e9dc78a1b0

16
bot.py
View file

@ -40,9 +40,21 @@ def ciaoruozi():
print("@" + username + ": /ciaoruozi")
# Ciao Ruozi.
if username.lower() == "ruozir":
telegram.sendmessage("Ciao me", sentin, source)
# Manda un messaggio casuale tra quelli nella lista
chosen_msg = random.sample(["Ciao me!",
"Ciao ciao ciao!",
"1 ciaoruozi = 1000 euro per me",
"La mi dico: #CiaoRuozi",
"Ciao eh me stesso!"], 1)
telegram.sendmessage(chosen_msg, sentin, source)
else:
telegram.sendmessage("Ciao Ruozi", sentin, source)
# Manda un messaggio casuale tra quelli nella lista
chosen_msg = random.sample(["Ciao Ruozi!",
"Ciao ciao ciao!",
"1 ciaoruozi = 1 prayer",
"La RYG dice: #CiaoRuozi",
"Ciao eh Ruozi!"], 1)
telegram.sendmessage(chosen_msg, sentin, source)
def ombromanto():