Advertisement
Turketto

Untitled

Apr 7th, 2023
6
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. @app.on_message(filters.command("debriefing"))
  2. def Invio_Rapportino(client,message):
  3. id_messaggio= message.id # ID del Messaggio
  4. id_user= str(message.from_user.id) # ID dell'User
  5. chat_id= str(message.chat.id) # ID della Chat
  6. text= message.text.lower() # Testo del messaggio in minuscolo
  7.  
  8. app.delete_messages(chat_id, id_messaggio)
  9.  
  10. if USER[id_user]["tl"]:
  11. Creo_Debriefing(id_user)
  12. else:
  13. app.send_message(id_user, f"{USER[id_user]['ps_id']} mi dispiace ma il comanado {text} lo possono usare solo i Team Leader!")
  14. app.send_message(chat_id, f"{USER[id_user]['ps_id']} mi dispiace ma il comanado {text} lo possono usare solo i Team Leader!")
  15. time.sleep(Pausa)
  16. app.delete_messages(chat_id, id_messaggio+1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement