mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Aggiunto comando /getrygimage per scaricare la propria immagine di profilo.
This commit is contained in:
parent
0e56ac4335
commit
a6f52bd38e
1 changed files with 9 additions and 0 deletions
9
bot.py
9
bot.py
|
@ -456,6 +456,13 @@ def lolfree():
|
|||
telegram.sendmessage(lolfreestring, sentin, source)
|
||||
|
||||
|
||||
def getrygimage():
|
||||
# Ricevi il link alla tua immagine del profilo Royal Games.
|
||||
print("@" + username + ": getrygimage")
|
||||
telegram.sendmessage("[Scarica](https://dl.dropboxusercontent.com/u/23313381/Logo/Personali/{tag}.png)"
|
||||
" la tua immagine del profilo Royal Games!".format(tag=royalgames[username.lower()]['icon']),
|
||||
sentin, source)
|
||||
|
||||
# Ciclo principale del bot
|
||||
print("Bot avviato!")
|
||||
while True:
|
||||
|
@ -531,6 +538,8 @@ while True:
|
|||
lolfree()
|
||||
elif text.startswith('/ombromanto'):
|
||||
ombromanto()
|
||||
elif text.startswith('/getrygimage'):
|
||||
getrygimage()
|
||||
else:
|
||||
print("@" + username + " bloccato.")
|
||||
except Exception as e:
|
||||
|
|
Loading…
Reference in a new issue