1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-27 13:34:28 +00:00
This commit is contained in:
Steffo 2016-06-16 15:59:48 +02:00
parent 1a01d1ad0c
commit eba991f3c3

12
bot.py
View file

@ -109,17 +109,17 @@ while True:
if msg['edit']: if msg['edit']:
if 'text' in msg['edit_data']: if 'text' in msg['edit_data']:
# Salvatelo in una stringa # Salvatelo in una stringa
text = msg['text'] text = msg['edit_data']['text']
# Guarda l'ID della chat in cui è stato inviato # Guarda l'ID della chat in cui è stato inviato
sentin = msg['chat']['id'] sentin = msg['edit_data']['chat']['id']
# ID del messaggio ricevuto # ID del messaggio ricevuto
source = msg['message_id'] source = msg['edit_data']['message_id']
if 'username' in msg['from']: if 'username' in msg['edit_data']['from']:
# Salva l'username se esiste # Salva l'username se esiste
username = msg['from']['username'] username = msg['edit_data']['from']['username']
else: else:
# Altrimenti, salva l'userID # Altrimenti, salva l'userID
username = str(msg['from']['id']) username = str(msg['edit_data']['from']['id'])
# Se sei un membro della Royal Games # Se sei un membro della Royal Games
if username.lower() in royalgames: if username.lower() in royalgames:
# Riconosci il comando. # Riconosci il comando.