mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
Altro controllo errori
This commit is contained in:
parent
f12b0e1b37
commit
f29044dbf3
1 changed files with 6 additions and 2 deletions
4
bot.py
4
bot.py
|
@ -303,7 +303,11 @@ while True:
|
||||||
telegram.sendmessage(chr(9888) + " Il numero specificato non è un intero.", sentin)
|
telegram.sendmessage(chr(9888) + " Il numero specificato non è un intero.", sentin)
|
||||||
else:
|
else:
|
||||||
m = 100
|
m = 100
|
||||||
|
try:
|
||||||
n = random.randrange(m) + 1
|
n = random.randrange(m) + 1
|
||||||
|
except ValueError:
|
||||||
|
telegram.sendmessage(chr(9888) + " Il numero specificato non è maggiore o uguale a 0.", sentin)
|
||||||
|
else:
|
||||||
telegram.sendmessage("Numero casuale da 1 a " + str(m) + ":\n*" + str(n) + "*", sentin)
|
telegram.sendmessage("Numero casuale da 1 a " + str(m) + ":\n*" + str(n) + "*", sentin)
|
||||||
elif text.startswith('/automah'):
|
elif text.startswith('/automah'):
|
||||||
print("@" + username + ": /automah")
|
print("@" + username + ": /automah")
|
||||||
|
|
Loading…
Reference in a new issue