mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +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():
|
||||
# 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)"
|
||||
" la tua immagine del profilo Royal Games!".format(tag=royalgames[username.lower()]['icon']),
|
||||
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
|
||||
print("Bot avviato!")
|
||||
while True:
|
||||
try:
|
||||
# Guarda il comando ricevuto.
|
||||
# Guarda il comando .
|
||||
msg = telegram.getupdates()
|
||||
# Se il messaggio non è una notifica di servizio...
|
||||
if 'edit' in msg:
|
||||
|
|
Loading…
Reference in a new issue