mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-27 13:34:28 +00:00
Aggiunto comando /leggi per visualizzare i messaggi
This commit is contained in:
parent
ccef5ab2af
commit
5ec08d2d62
1 changed files with 10 additions and 0 deletions
10
bot.py
10
bot.py
|
@ -655,6 +655,16 @@ while True:
|
|||
d += str(time.time()) + " | " + cmd[1] + "\n"
|
||||
filemanager.writefile("diario.txt", d)
|
||||
telegram.sendmessage("Aggiunto al diario RYG.", sentin, source)
|
||||
elif text.startswith('/leggi'):
|
||||
print("@" + username + ": /leggi")
|
||||
cmd = text.split(" ", 1)
|
||||
d = filemanager.readfile("diario.txt")
|
||||
d = d.split('\n')
|
||||
text = str()
|
||||
# L'ultimo numero è escluso.
|
||||
for n in range(int(cmd[1]) + 1, 1, -1):
|
||||
text += d[len(d) - n] + "\n"
|
||||
telegram.sendmessage(text, sentin, source)
|
||||
else:
|
||||
print("@" + username + " bloccato.")
|
||||
|
||||
|
|
Loading…
Reference in a new issue