1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 03:54:20 +00:00
This commit is contained in:
Steffo 2016-01-27 15:31:45 +01:00
parent 7f2dbc1c8a
commit 42bb2b380f

4
bot.py
View file

@ -310,6 +310,7 @@ while True:
print("@" + username + ": /hs") print("@" + username + ": /hs")
cmd = text.split(" ", 1) cmd = text.split(" ", 1)
r = None r = None
if len(cmd) >= 2:
try: try:
r = hearthstone.card(cmd[1]) r = hearthstone.card(cmd[1])
# Se ci sono più carte, prendine una a caso! # Se ci sono più carte, prendine una a caso!
@ -386,6 +387,9 @@ while True:
"*Eroe*\n" + "*Eroe*\n" +
str(r['health']) + " salute\n") str(r['health']) + " salute\n")
telegram.sendmessage(text, sentin) telegram.sendmessage(text, sentin)
else:
telegram.sendmessage(chr(9888) + " Non hai specificato nessuna carta!\n"
"La sintassi corretta è _/hs nomecarta_ .", sentin)
elif text.startswith('/online'): elif text.startswith('/online'):
# Elenco di tutte le persone online su Steam # Elenco di tutte le persone online su Steam
print("@" + username + ": /online ") print("@" + username + ": /online ")