forked from sultansq/kiu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aflam.py
4895 lines (4010 loc) · 259 KB
/
aflam.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""
[InlineKeyboardButton("◁", callback_data="Yrw1 " + str(m.from_user.id))],
[InlineKeyboardButton("➡️ التالي", callback_data="Yrw3 " + str(m.from_user.id))],
[InlineKeyboardButton("𝐇𝐎𝐌", callback_data="moslsl " + str(m.from_user.id))],
[InlineKeyboardButton("⌞ 𝘾𝙍 • 𝙎𝙊𝙐𝙍𝘾𝙀 ⌝⚡", url=f"https://t.me/pp_g3")],
"""
import asyncio
from strings import get_command
from strings.filters import command
from pyrogram import Client, filters
from pyrogram.types import InlineKeyboardMarkup, InlineKeyboardButton, Message, CallbackQuery
from AnonX import app
#########################################################################################
#########################################################################################
######################### # Aflam Arabic # ##########################
#########################################################################################
#########################################################################################
# Replay Text
@app.on_message(
command(["افلام"])
& ~filters.edited
)
async def aflamAR(c: Client, m: Message):
global mid
mid = m.message_id
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("افلام 🎬", callback_data="film " + str(m.from_user.id))],
[InlineKeyboardButton("مسلسلات 📼", callback_data="moslsl " + str(m.from_user.id))],
[InlineKeyboardButton("مسرحيات 🎭 ", callback_data="msrahia " + str(m.from_user.id))],
[InlineKeyboardButton("⌞ 𝘾𝙍 • 𝙎𝙊𝙐𝙍𝘾𝙀 ⌝⚡", url=f"https://t.me/pp_g3")],
])
await m.reply_text("◍ اهلا بيك في قائمة الافلام والمسلسلات العربيه\n√", reply_markup=keyboard)
# Replay Edit
@app.on_callback_query(filters.regex("^aflamAR2 (\\d+)$"))
async def aflamAR2(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("افلام 🎬", callback_data="film " + str(m.from_user.id))],
[InlineKeyboardButton("مسلسلات 📼", callback_data="moslsl " + str(m.from_user.id))],
[InlineKeyboardButton("مسرحيات 🎭 ", callback_data="msrahia " + str(m.from_user.id))],
[InlineKeyboardButton("⌞ 𝘾𝙍 • 𝙎𝙊𝙐𝙍𝘾𝙀 ⌝⚡", url=f"https://t.me/pp_g3")],
])
await m.message.edit_text("◍ اهلا بيك في قائمة الافلام والمسلسلات العربيه\n√", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^film (\\d+)$"))
async def film(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("كوميدي 😹", callback_data="comedy " + str(m.from_user.id))],
[InlineKeyboardButton("اكشن 🔥", callback_data="action " + str(m.from_user.id))],
[InlineKeyboardButton("دراما 🌚", callback_data="drama " + str(m.from_user.id))],
[InlineKeyboardButton("𝐇𝐎𝐌", callback_data="aflamAR2 " + str(m.from_user.id))],
[InlineKeyboardButton("⌞ 𝘾𝙍 • 𝙎𝙊𝙐𝙍𝘾𝙀 ⌝⚡", url=f"https://t.me/pp_g3")],
])
await m.message.edit_text("◍ اهلا بيك في قائمة الافلام العربيه\n√", reply_markup=keyboard)
#########################################################################################
#########################################################################################
######################### # Aflam Comedy # ##########################
#########################################################################################
#########################################################################################
@app.on_callback_query(filters.regex("^comedy (\\d+)$"))
async def comedy(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ وقفة رجاله", callback_data="Xco1 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ الخطة العايمة", callback_data="Xco2 " + str(m.from_user.id))],
[InlineKeyboardButton("⌯ بنات ثانوي", callback_data="Xco3 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ عفريت ترانزيت", callback_data="Xco4 " + str(m.from_user.id))],
[InlineKeyboardButton("⌯ زكي شان", callback_data="Xco5 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ سمير وشهير وبهير", callback_data="Xco6 " + str(m.from_user.id))],
[InlineKeyboardButton("⌯ تصبح علي خير", callback_data="Xco7 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ بابا", callback_data="Xco8 " + str(m.from_user.id))],
[InlineKeyboardButton("⌯ جدو نحنوح", callback_data="Xco9 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ سمير ابو النيل", callback_data="Xco10 " + str(m.from_user.id))],
[InlineKeyboardButton("⌯ كلبي دليلي", callback_data="Xco11 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ بنات العم", callback_data="Xco12 " + str(m.from_user.id))],
[InlineKeyboardButton("⌯ علي بابا", callback_data="Xco13 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ فول الصين العظيم", callback_data="Xco14 " + str(m.from_user.id))],
[InlineKeyboardButton("⌯ حسن وبقلظ", callback_data="Xco15 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ الكويسين", callback_data="Xco16 " + str(m.from_user.id))],
[InlineKeyboardButton("⌯ يوم مالوش لازمه", callback_data="Xco17 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ غبي منه فيه", callback_data="Xco18 " + str(m.from_user.id))],
[InlineKeyboardButton("⌯ خير وبركه", callback_data="Xco19 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ البدله", callback_data="Xco20 " + str(m.from_user.id))],
[InlineKeyboardButton("𝐇𝐎𝐌", callback_data="film " + str(m.from_user.id))],
[InlineKeyboardButton("⌞ 𝘾𝙍 • 𝙎𝙊𝙐𝙍𝘾𝙀 ⌝⚡", url=f"https://t.me/pp_g3")],
])
await m.message.edit_text("◍ اهلا بك في قائمة الافلام الكوميدي العربيه\n√", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xco1 (\\d+)$"))
async def Xco1(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXco1 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXco2 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="comedy " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : وقفة رجالة
📖 انتاج سنة : 2021
🌎 الدولة : مصر
🗄 تصنيف : كوميدي
📜 قصة الفيلم:
تدور أحداث العمل في قالب كوميدي حول مجموعة من الأصدقاء الذين يجتمعون بعد سنوات لمساعدة أحدهم في الخروج من ورطة كبيرة، وتتطوّر الأحداث فتقودهم للسفر إلى إحدى المدن الساحلية.
""", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xco2 (\\d+)$"))
async def Xco2(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXco3 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXco4 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="comedy " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : الخطة العايمة
📖 انتاج سنة : 2020
🌎 الدولة : مصر
🗄 تصنيف : كوميدي
📜 قصة الفيلم:
في إطار كوميدي لايت تدور الأحداث حول أحد الأشخاص يتطلع إلى سرقة أحد البنك لوجود أوراق هامة في الخزانة، فيتفق مع (جلال وياسمين) لتولي المهمة، واللذان يختاران اللصان الساذجان (حمزون وعلى الله) لتنفيذ تلك المهمة، ويبدآن في تدريبهما.
""", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xco3 (\\d+)$"))
async def Xco3(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXco5 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXco6 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="comedy " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : بنات ثانوي
انتاج سنة : 2020
🌎 الدولة : مصر
🗄 تصنيف : دراما, كوميدي, رومانسي
📜 قصة الفيلم:
تدور أحداث الفيلم حول فترة المراهقة، حيث تبحث خمس فتيات في مرحلة المراهقة عن ذواتهن وشخصياتهن، ليقعن في العديد من المتاعب والصعاب خلال مرحلة الدراسة الثانوية.
""", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xco4 (\\d+)$"))
async def Xco4(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXco7 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXco8 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="comedy " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : عفريت ترانزيت
📖 انتاج سنة : 2020
🌎 الدولة : مصر
🗄 تصنيف : كوميدي
📜 قصة الفيلم:
يتناول العمل قصة بائع مخدرات يتعرض للعديد من المشاكل واتهامه في جريمة قتل، الأمر الذي يدفعه لمحاولة البحث عن براءته والسير في طريق التوبة.
""", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xco5 (\\d+)$"))
async def Xco5(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXco9 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXco10 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="comedy " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : زكي شان
📖 انتاج سنة : 2005
🌎 الدولة : مصر
🗄 تصنيف : كوميدي
📜 قصة الفيلم:
زكي شاب كثير المشاكل سواء مع أفراد أسرته أو في عمله، يعلم أن رب عمل والده يرغب في تعيين بودي جارد كي يحرس ابنه وابنته، ويقرر التقدم للوظيفة رغم عدم ملائمته جسديًا للوظيفة.
""", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xco6 (\\d+)$"))
async def Xco6(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXco11 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXco12 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="comedy " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : سمير وشهير وبهير
📖 انتاج سنة : 2010
🌎 الدولة : مصر
🗄 تصنيف : كوميدي, رومانسي
📜 قصة الفيلم:
ثلاثة أخوة لنفس الأب؛ ولكن لأمهات مختلفة هم (سمير)، ويعمل دوبلير فى السينما، و (شهير) يحب الموسيقي ومعروف بعلاقاته النسائية المتعددة، (بهير) وهو ابن لأسرة أرستقراطية. نتيجة سوء تعامل مع إحدى آلآت الزمن يسافروا عبر الزمن إلى اليوم الذي قابل فيه والدهم الأمهات الثلاثة.
""", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xco7 (\\d+)$"))
async def Xco7(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXco13 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXco14 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="comedy " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : تصبح علي خير
📖 انتاج سنة : 2017
🌎 الدولة : مصر
🗄 تصنيف : دراما , كوميدي , رومانسي
📜 قصة الفيلم:
في إطار كوميدي رومانسي تشويقي، تدور قصة الفيلم في إطار مُختلف عن مهندس ناجح وثري يدعى (حسام الخديوي)، ولكنه يعاني في اﻵونة اﻷخيرة من مشاكل في حياته الطبيعية فيلجأ إلي حياة بديلة من خلال جهاز جديد يُدخله في عالم الأحلام.
""", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xco8 (\\d+)$"))
async def Xco8(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXco15 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXco16 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="comedy " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : بابا
📖 انتاج سنة : 2012
🌎 الدولة : مصر
🗄 تصنيف : كوميدي , رومانسي
📜 قصة الفيلم:
تدور أحداث الفيلم في إطار رومانسي كوميدي حيث الطبيب حازم (أحمد السقا) طبيب أمراض النساء الذي تتعلق بحبه مهندسة الديكور فريدة (درة) وعقب زواجهما يفاجأ حازم بعدم قدرته على الإنجاب فيضطر للجوء إلى عملية الحقن المهجري، فترى هل سيتمكن من تحقيق رغبتهما؟
""", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xco9 (\\d+)$"))
async def Xco9(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXco17 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXco18 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="comedy " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : جدو نحنوح
📖 انتاج سنة : 2018
🌎 الدولة : مصر
🗄 تصنيف : كوميدي
📜 قصة الفيلم:
مجموعة من الشباب يتوفى جدهم، وعند توزيع الميراث يكتشفون أن جدهم لم يترك أموالًا لهم، بينما ترك وصية يُطالبهم فيها بالبحث عن كنز مدفون، وبالبحث عن مكان الكنز يتضح أنه داخل مستشفى المجانين. فيخططون لدخول مستشفى المجانين سعيًا لإيجاد هذا الكنز، وهناك تحدث لهم الكثير من المفارقات الكوميدية.
""", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xco10 (\\d+)$"))
async def Xco10(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXco19 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXco20 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="comedy " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : سمير ابو النيل
📖 انتاج سنة : 2013
🌎 الدولة : مصر
🗄 تصنيف : كوميدي
📜 قصة الفيلم:
في إطار كوميدي تدور أحداث الفيلم حول الشاب البخيل سمير أبو النيل (أحمد مكي) الذي يقطن بحي شعبي، ونتيجة لبخله الشديد تقع له العديد من المفارقات والمشاكل مع أهل منطقته، ويزيد من كرههم له لسوء معاملته لهم، وبين ليلة وضحاها يمرض ابن عمه حسين أبو النيل (حسين اﻹمام) ويقرر أن يترك ثروته لسمير الذي يستغل ذلك ويقوم بإنشاء قناة فضائية يناقش فيها أحواله وعلاقاته بأصدقائه وأهل منطقته.. تتوالى الأحداث في سياق كوميدي بعد إنشاء حزب سياسي يدعو له المواطنين.
""", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xco11 (\\d+)$"))
async def Xco11(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXco21 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXco22 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="comedy " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : كلبي دليلي
📖 انتاج سنة : 2013
🌎 الدولة : مصر
🗄 تصنيف : كوميدي
📜 قصة الفيلم:
تدور قصة الفيلم حول ضابط الشرطة مغاوري (سامح حسين)، الذي يعيش في صعيد مصر، ثم يُنقل فجأة إلى مارينا بالساحل الشمالي، وما عليه هناك إلا إثبات ذاته كضابط يحتذى به أمام الضباط وإشادة رئيسه بأدائه، إلى جانب ذلك يجد (مغاوري) نفسه واقعًا في حب فتاة تختلف عنه تمامًا في كل شيء.
""", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xco12 (\\d+)$"))
async def Xco12(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXco23 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXco24 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="comedy " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : بنات العم
📖 انتاج سنة : 2012
🌎 الدولة : مصر
🗄 تصنيف : دراما, كوميدي
📜 قصة الفيلم:
ثلاث فتيات تربطهن علاقة عمومة يعشن مع جدتهن، يتطلعن إلى بيع القصر الذي يعشن به، فيتوجهن إلى (عزيز الهانش) ليشتري القصر، فتحاول الجدة منعهن وتحذرهن من لعنة حدثت لأجدادهن، إلا أن الفتيات لا ينصتن لها، فأصابتهن اللعنة ويتحولن إلى رجال، وطوال الأحداث تسعى الفتيات لإعادة القصر، ومحاولة فك اللعنة.
""", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xco13 (\\d+)$"))
async def Xco13(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXco25 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXco26 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="comedy " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : علي بابا
📖 انتاج سنة : 2018
🌎 الدولة : مصر
🗄 تصنيف : دراما، كوميدي
📜 قصة الفيلم:
تدور أحداث الفيلم في إطار كوميدي حول شخص انتهازي يُدعى (علي)، يسعى إلى تحقيق مصالحه الشخصية حتى ولو كانت على حساب الآخرين، وإذا به يفاجئ بوجود ابنة له (أيتن عامر) في سن العشرينات، وتبدأ من هنا المفارقات الكوميدية التي يقع فيها.
""", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xco14 (\\d+)$"))
async def Xco14(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXco27 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXco28 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="comedy " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : فول الصين العظيم
📖 انتاج سنة : 2004
🌎 الدولة : مصر
🗄 تصنيف : كوميدي، اكشن
📜 قصة الفيلم:
يدور الفيلم في إطار كوميدي حول شاب مصري يدعى (محي الشرقاوي)، يشكل كل من جده (جابر الشرقاوي) وأعمامه عصابة للتهريب، ولأنه جبان لا يستطيع مسايرتهم والعمل معهم، يذهب لوالدته وزوجها والذي يرسله للصين ليمثل مصر في مسابقة للطبخ، ليقع في العديد من المشكلات.
""", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xco15 (\\d+)$"))
async def Xco15(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXco29 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXco30 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="comedy " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : حسن وبقلظ
📖 انتاج سنة : 2016
🌎 الدولة : مصر
🗄 تصنيف : كوميدي , رومانسي , دراما
📜 قصة الفيلم:
تدور أحداث الفيلم حول شقيقين ملتصقين ببعضهما البعض (علي ربيع) و(كريم فهمي)، تقع معهما العديد من المواقف الكوميدية، يتورط معهما ابن خالتهما (محمد أسامة) وفي مشاكلهما.
""", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xco16 (\\d+)$"))
async def Xco16(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXco31 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXco32 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="comedy " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : الكويسين
📖 انتاج سنة : 2018
🌎 الدولة : مصر
🗄 تصنيف : كوميدي
📜 قصة الفيلم:
مفتاح وشقيقته غزال ثنائي متخصص في النصب، يكتشف مفتاح وجود جوهرة ثمينة تدعى القرموط القرمزي في منزل عائلة الكويسين، فيقرر اختراق صفوف هذه العائلة من خلال انتحال شخصية ابنهم مظهر المفقود منذ سنوات طويلة، لكن هذه المهمة تواجه الكثير من الصعوبات رغم نجاحها في البداية.
""", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xco17 (\\d+)$"))
async def Xco17(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXco33 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXco34 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="comedy " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : يوم مالوش لازمة
📖 انتاج سنة : 2015
🌎 الدولة : مصر
🗄 تصنيف : كوميدي
?? قصة الفيلم:
اليوم هو يوم زفاف يحيى ومها ,و منذ الصباح الباكر يستعد العروسان لاستقبال هذا اليوم، لكن بمجرد أن يبدأ هذا اليوم حتى يقع العروسان طوال اليوم وفي حفل الزفاف نفسه في سلسلة طويلة لا تنتهي من المفارقات والمواقف الصعبة، وما يزيد الطين بلة هو مطاردة الفتاة المهووسة بوسي ليحيى طوال اليوم، وإصرارها الشديد أن تكون هي زوجته بدلًا من مها.
""", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xco18 (\\d+)$"))
async def Xco18(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXco35 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXco36 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="comedy " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : غبي منه فيه
📖 انتاج سنة : 2004
🌎 الدولة : مصر
🗄 تصنيف : كوميدي
📜 قصة الفيلم:
يشعر سلطان باليأس من تحقيق حلمه بالزواج من حبيبته سامية التي أعطى له والدها مهلة شهر واحد كي يعد خلاله بيت الزوجية، فتعرف سامية على زوج خالتها ضبش، والذي يشركه في سرقاته لمساعدته، لكنه يوقعه في المتاعب بسبب غبائه الشديد.
""", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xco19 (\\d+)$"))
async def Xco19(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXco37 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXco38 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="comedy " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : خير وبركة
📖 انتاج سنة : 2017
🌎 الدولة : مصر
🗄 تصنيف : كوميديا
📜 قصة الفيلم:
تدور أحداث الفيلم في إطار كوميدي يتناول قصة شقيقين يحاولان البحث عن فرصة عمل، وخلال رحلة البحث يواجهان العديد من المواقف الكوميدية عندما يعملان في مهن لا يعرفان عنها شيئًا.
""", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xco20 (\\d+)$"))
async def Xco20(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXco39 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXco40 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="comedy " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : البدلة
📖 انتاج سنة : 2018
🌎 الدولة : مصر
🗄 تصنيف : كوميدي , رومانسي
📜 قصة الفيلم:
تدور القصة حول حمادة، ووليد اللذين ولدا في نفس اليوم فاشلين في الحياة، يقرران الذهاب إلى حفلة تنكرية، ويتنكران في زي رجال الشرطة لمقابلة زملائهم القدامى، الأمر الذي يجعل الجميع يعتقد بأنهما شرطيين حقيقيين، وتقع لهما العديد من الأحداث والمشاكل.
""", reply_markup=keyboard)
#########################################################################################
#########################################################################################
@app.on_callback_query(filters.regex("^XXco1 (\\d+)$"))
async def XXco1(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/121", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco2 (\\d+)$"))
async def XXco2(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/122", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco3 (\\d+)$"))
async def XXco3(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/123", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco4 (\\d+)$"))
async def XXco4(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/124", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco5 (\\d+)$"))
async def XXco5(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/125", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco6 (\\d+)$"))
async def XXco6(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/126", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco7 (\\d+)$"))
async def XXco7(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/127", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco8 (\\d+)$"))
async def XXco8(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/128", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco9 (\\d+)$"))
async def XXco9(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/129", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco10 (\\d+)$"))
async def XXco10(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/130", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco11 (\\d+)$"))
async def XXco11(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/131", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco12 (\\d+)$"))
async def XXco12(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/132", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco13 (\\d+)$"))
async def XXco13(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/133", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco14 (\\d+)$"))
async def XXco14(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/134", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco15 (\\d+)$"))
async def XXco15(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/135", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco16 (\\d+)$"))
async def XXco16(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/136", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco17 (\\d+)$"))
async def XXco17(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/137", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco18 (\\d+)$"))
async def XXco18(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/139", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco19 (\\d+)$"))
async def XXco19(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/140", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco20 (\\d+)$"))
async def XXco20(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/141", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco21 (\\d+)$"))
async def XXco21(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/142", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco22 (\\d+)$"))
async def XXco22(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/143", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco23 (\\d+)$"))
async def XXco23(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/144", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco24 (\\d+)$"))
async def XXco24(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/145", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco25 (\\d+)$"))
async def XXco25(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/146", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco26 (\\d+)$"))
async def XXco26(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/147", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco27 (\\d+)$"))
async def XXco27(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/148", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco28 (\\d+)$"))
async def XXco28(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/149", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco29 (\\d+)$"))
async def XXco29(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/150", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco30 (\\d+)$"))
async def XXco30(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/151", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco31 (\\d+)$"))
async def XXco31(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/152", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco32 (\\d+)$"))
async def XXco32(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/153", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco33 (\\d+)$"))
async def XXco33(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/154", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco34 (\\d+)$"))
async def XXco34(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/155", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco35 (\\d+)$"))
async def XXco35(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/156", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco36 (\\d+)$"))
async def XXco36(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/157", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco37 (\\d+)$"))
async def XXco37(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/158", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco38 (\\d+)$"))
async def XXco38(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/159", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco39 (\\d+)$"))
async def XXco39(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/160", reply_to_message_id=mid)
@app.on_callback_query(filters.regex("^XXco40 (\\d+)$"))
async def XXco40(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
await m.message.delete()
await m.message.reply_audio("https://t.me/Musicah4/161", reply_to_message_id=mid)
#########################################################################################
#########################################################################################
######################### # Aflam Action # ##########################
#########################################################################################
#########################################################################################
@app.on_callback_query(filters.regex("^action (\\d+)$"))
async def action(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("حملة فرعون", callback_data="Xact1 " + str(m.from_user.id))] +
[InlineKeyboardButton("بني ادم", callback_data="Xact2 " + str(m.from_user.id))],
[InlineKeyboardButton("الخليه", callback_data="Xact3 " + str(m.from_user.id))] +
[InlineKeyboardButton("حرب كرموز", callback_data="Xact4 " + str(m.from_user.id))],
[InlineKeyboardButton("من ضهر راجل", callback_data="Xact5 " + str(m.from_user.id))] +
[InlineKeyboardButton("زنزانة سبعة", callback_data="Xact6 " + str(m.from_user.id))],
[InlineKeyboardButton("خارج عن القانون", callback_data="Xact7 " + str(m.from_user.id))] +
[InlineKeyboardButton("ولاد العم", callback_data="Xact8 " + str(m.from_user.id))],
[InlineKeyboardButton("وش سجون", callback_data="Xact9 " + str(m.from_user.id))],
[InlineKeyboardButton("𝐇𝐎𝐌", callback_data="aflamAR2 " + str(m.from_user.id))],
[InlineKeyboardButton("⌞ 𝘾𝙍 • 𝙎𝙊𝙐𝙍𝘾𝙀 ⌝⚡", url=f"https://t.me/pp_g3")],
])
await m.message.edit_text("اهلا بك في قائمة الافلام الاكشن العربيه", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xact1 (\\d+)$"))
async def Xact1(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXact1 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXact2 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="action " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : حملة فرعون
📖 انتاج سنة : 2019
🌎 الدولة : مصر
🗄 تصنيف : اكشن , اثارة , تشويق
📜 قصة الفيلم:
تدور أحداث الفيلم في إطار تشويقي مثير حول الشاب يحيى الشهير بفرعون والذي يدير أكبر شبكة اغتيالات منظمة في مصر، ويضطر إلى التوجه إلى سوريا لتحرير أبنه المخطوف .
""", reply_markup=keyboard)
@app.on_callback_query(filters.regex("^Xact2 (\\d+)$"))
async def Xact2(c: Client, m: CallbackQuery):
a = m.data.split(" ")
if m.from_user.id != int(a[1]):
await c.answer_callback_query(m.id, text="صاحب الامر هو فقط من يستطيع الضغط على الزر 🖤🙂", show_alert=True)
return
keyboard = InlineKeyboardMarkup(inline_keyboard=[
[InlineKeyboardButton("⌯ جوده متوسطه", callback_data="XXact3 " + str(m.from_user.id))] +
[InlineKeyboardButton("⌯ جوده عاليه", callback_data="XXact4 " + str(m.from_user.id))],
[InlineKeyboardButton("◁", callback_data="action " + str(m.from_user.id))],
])
await m.message.edit_text("""🎥 اسم الفيلم : بني ادم
📖 انتاج سنة : 2018
🌎 الدولة : مصر
🗄 تصنيف : اكشن , اثارة , تشويق
📜 قصة الفيلم:
تدور الأحداث في إطار بوليسي تشويقي مثير حول رجل الأعمال (آدم) الذي يتهم بأعمال إجرامية، في الوقت الذي تلجأ إليه الشرطة في مهمة خطيرة، فهل الأحداث ستتطور وتجعله متورط، أم هناك جانب غامض غير معروف عنه؟.
""", reply_markup=keyboard)