Advertisement
Turketto

Untitled

Apr 7th, 2023
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. ####TL PRENOTAMI###################
  2. ### Un TL vuole fare una MilSim ###
  3. ###################################
  4. @app.on_callback_query(filters.regex("TL"))
  5. def Prenotazione_TL(client,callback_query):
  6. query_data= callback_query.data # Risposta inviata della tastiera
  7. call_back_id= callback_query.id # ID del Messaggio
  8. chat_id= callback_query.message.chat.id # ID della Chat in uso
  9. id_messaggio= callback_query.message.id # per cancellare i messaggi
  10. nome_user= callback_query.from_user.first_name # Il nome di chi sta usando la tastiera
  11. id_user= str(callback_query.from_user.id) # ID dell'User
  12. risposta= query_data.split("_")[1]
  13.  
  14. [...]
  15.  
  16. elif "ANNULLO" in risposta:
  17. app.edit_message_text(chat_id, id_messaggio, f"__Prenotazione da parte di <a href='tg://user?id={id_user}'>{USER[id_user]['ps_id']}</a> annullata...__")
  18. time.sleep(Pausa)
  19. app.delete_messages(chat_id, id_messaggio)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement