mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-27 13:34:28 +00:00
Aggiunto nuovo comando, /smecds
This commit is contained in:
parent
a6f52bd38e
commit
e40c9830ae
1 changed files with 11 additions and 2 deletions
13
bot.py
13
bot.py
|
@ -458,16 +458,25 @@ def lolfree():
|
||||||
|
|
||||||
def getrygimage():
|
def getrygimage():
|
||||||
# Ricevi il link alla tua immagine del profilo Royal Games.
|
# Ricevi il link alla tua immagine del profilo Royal Games.
|
||||||
print("@" + username + ": getrygimage")
|
print("@" + username + ": /getrygimage")
|
||||||
telegram.sendmessage("[Scarica](https://dl.dropboxusercontent.com/u/23313381/Logo/Personali/{tag}.png)"
|
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']),
|
" la tua immagine del profilo Royal Games!".format(tag=royalgames[username.lower()]['icon']),
|
||||||
sentin, source)
|
sentin, source)
|
||||||
|
|
||||||
|
|
||||||
|
def smecds():
|
||||||
|
# Secondo me, è colpa...
|
||||||
|
print("@" + username + ": /smecds")
|
||||||
|
accusato = random.sample(["dello stagista", "degli sposi", "di Santinelli", "di Sensei", "di Steffo", "di Spaggia",
|
||||||
|
"della sedia", "di Satana", "del Sangue (degli occhi di Adry)", "del Sale"])
|
||||||
|
telegram.sendmessage("Secondo me è colpa {accusato}...".format(accusato=accusato))
|
||||||
|
|
||||||
|
|
||||||
# Ciclo principale del bot
|
# Ciclo principale del bot
|
||||||
print("Bot avviato!")
|
print("Bot avviato!")
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
# Guarda il comando ricevuto.
|
# Guarda il comando .
|
||||||
msg = telegram.getupdates()
|
msg = telegram.getupdates()
|
||||||
# Se il messaggio non è una notifica di servizio...
|
# Se il messaggio non è una notifica di servizio...
|
||||||
if 'edit' in msg:
|
if 'edit' in msg:
|
||||||
|
|
Loading…
Reference in a new issue