1
Fork 0
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:
Steffo 2016-02-02 16:08:49 +01:00
parent ccef5ab2af
commit 5ec08d2d62

10
bot.py
View file

@ -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.")