MohammedAlakhras commited on
Commit
84d8632
ยท
verified ยท
1 Parent(s): 2f9fabc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -91,8 +91,8 @@ async def main():
91
  # Check the last reply to this sender
92
  last_reply_time = reply_times.get(str(sender_id), None)
93
  if last_reply_time is None or time.time() - last_reply_time > 60*60*6: # reply only if not replied in the last minute
94
- #response = f'Hello <a href="tg://user?id={sender_id}">{sender_name}</a> ๐Ÿ‘‹๐Ÿป ,\n {random.choice(RndMssgs)} ๐Ÿ˜Š'
95
- response = f'ุฃู‡ู„ุง <a href="tg://user?id={sender_id}">{sender_name}</a> ๐Ÿ‘‹๐Ÿป ,\nุงู„ุญุณุงุจ ู…ุบู„ู‚ ุญุงู„ูŠุงู‹. \n ุงู„ุฑุณุงุฆู„ ุงู„ู‡ุงู…ุฉ ุนุจุฑ <a href="https://www.facebook.com/MohammedAlakras/">Messenger</a> \n \n ุดูƒุฑุงู‹ ู„ุชูู‡ู…ูƒ '
96
  await client.send_message(chat_id, response, parse_mode='HTML',link_preview=False)
97
  reply_times[str(sender_id)] = time.time() # update the last reply time
98
 
@@ -100,8 +100,8 @@ async def main():
100
  elif username in text:
101
  last_reply_time = reply_times.get(str(str(chat_id)+str(sender_id)), None)
102
  if last_reply_time is None or time.time() - last_reply_time > 60*5:
103
- #response = f'Hello <a href="tg://user?id={sender_id}">{sender_name}</a> @ <a href="https://t.me/c/{chat_id}">{chat.title}</a> ๐Ÿ‘‹๐Ÿป,\n {random.choice(RndMssgs)} ๐Ÿ˜Š'
104
- response = f'ุฃู‡ู„ุง <a href="tg://user?id={sender_id}">{sender_name}</a> ๐Ÿ‘‹๐Ÿป ,\nุงู„ุญุณุงุจ ู…ุบู„ู‚ ุญุงู„ูŠุงู‹. \n ุงู„ุฑุณุงุฆู„ ุงู„ู‡ุงู…ุฉ ุนุจุฑ <a href="https://www.facebook.com/MohammedAlakras/">Messenger</a> \n \n ุดูƒุฑุงู‹ ู„ุชูู‡ู…ูƒ '
105
  await client.send_message(chat_id, response, parse_mode='HTML',link_preview=False)
106
  reply_times[str(str(chat_id)+str(sender_id))] = time.time()
107
 
 
91
  # Check the last reply to this sender
92
  last_reply_time = reply_times.get(str(sender_id), None)
93
  if last_reply_time is None or time.time() - last_reply_time > 60*60*6: # reply only if not replied in the last minute
94
+ response = f'Hello <a href="tg://user?id={sender_id}">{sender_name}</a> ๐Ÿ‘‹๐Ÿป ,\n {random.choice(RndMssgs)} ๐Ÿ˜Š'
95
+ #response = f'ุฃู‡ู„ุง <a href="tg://user?id={sender_id}">{sender_name}</a> ๐Ÿ‘‹๐Ÿป ,\nุงู„ุญุณุงุจ ู…ุบู„ู‚ ุญุงู„ูŠุงู‹. \n ุงู„ุฑุณุงุฆู„ ุงู„ู‡ุงู…ุฉ ุนุจุฑ <a href="https://www.facebook.com/MohammedAlakras/">Messenger</a> \n \n ุดูƒุฑุงู‹ ู„ุชูู‡ู…ูƒ '
96
  await client.send_message(chat_id, response, parse_mode='HTML',link_preview=False)
97
  reply_times[str(sender_id)] = time.time() # update the last reply time
98
 
 
100
  elif username in text:
101
  last_reply_time = reply_times.get(str(str(chat_id)+str(sender_id)), None)
102
  if last_reply_time is None or time.time() - last_reply_time > 60*5:
103
+ response = f'Hello <a href="tg://user?id={sender_id}">{sender_name}</a> @ <a href="https://t.me/c/{chat_id}">{chat.title}</a> ๐Ÿ‘‹๐Ÿป,\n {random.choice(RndMssgs)} ๐Ÿ˜Š'
104
+ #response = f'ุฃู‡ู„ุง <a href="tg://user?id={sender_id}">{sender_name}</a> ๐Ÿ‘‹๐Ÿป ,\nุงู„ุญุณุงุจ ู…ุบู„ู‚ ุญุงู„ูŠุงู‹. \n ุงู„ุฑุณุงุฆู„ ุงู„ู‡ุงู…ุฉ ุนุจุฑ <a href="https://www.facebook.com/MohammedAlakras/">Messenger</a> \n \n ุดูƒุฑุงู‹ ู„ุชูู‡ู…ูƒ '
105
  await client.send_message(chat_id, response, parse_mode='HTML',link_preview=False)
106
  reply_times[str(str(chat_id)+str(sender_id))] = time.time()
107