forked from LEGEND-AI/INVITEALL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinviteall.py
2788 lines (2601 loc) · 100 KB
/
inviteall.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
import asyncio
import os
import sys
from datetime import datetime
import telethon.utils
from telethon import TelegramClient, events
from telethon.errors import (
ChannelInvalidError,
ChannelPrivateError,
ChannelPublicGroupNaError,
)
from telethon.errors.rpcerrorlist import YouBlockedUserError
from telethon.network.connection.tcpabridged import ConnectionTcpAbridged
from telethon.sessions import StringSession
from telethon.tl import functions
from telethon.tl.functions.channels import (
GetFullChannelRequest,
InviteToChannelRequest,
LeaveChannelRequest,
)
from telethon.tl.functions.messages import GetFullChatRequest
from Config import (
API_H,
API_H2,
API_H3,
API_H4,
API_H5,
API_H6,
API_H7,
API_H8,
API_H9,
API_H10,
API_H11,
API_H12,
API_H13,
API_H14,
API_H15,
API_H16,
API_H17,
API_H18,
API_H19,
API_H20,
API_H21,
API_H22,
API_H23,
API_H24,
API_H25,
API_ID,
API_ID2,
API_ID3,
API_ID4,
API_ID5,
API_ID6,
API_ID7,
API_ID8,
API_ID9,
API_ID10,
API_ID11,
API_ID12,
API_ID13,
API_ID14,
API_ID15,
API_ID16,
API_ID17,
API_ID18,
API_ID19,
API_ID20,
API_ID21,
API_ID22,
API_ID23,
API_ID24,
API_ID25,
GROUP_USERNAME,
STRING,
STRING2,
STRING3,
STRING4,
STRING5,
STRING6,
STRING7,
STRING8,
STRING9,
STRING10,
STRING11,
STRING12,
STRING13,
STRING14,
STRING15,
STRING16,
STRING17,
STRING18,
STRING19,
STRING20,
STRING21,
STRING22,
STRING23,
STRING24,
STRING25,
SUDO,
)
grp = GROUP_USERNAME
if "@" in grp:
grp = grp.replace("@", "")
sup = API_ID
aa = API_ID2 or sup
ba = API_ID3 or sup
ca = API_ID4 or sup
da = API_ID5 or sup
ea = API_ID6 or sup
fa = API_ID7 or sup
ga = API_ID8 or sup
ha = API_ID9 or sup
ia = API_ID10 or sup
ja = API_ID11 or sup
ka = API_ID12 or sup
la = API_ID13 or sup
ma = API_ID14 or sup
na = API_ID15 or sup
oa = API_ID16 or sup
pa = API_ID17 or sup
qa = API_ID18 or sup
ra = API_ID19 or sup
sa = API_ID20 or sup
ta = API_ID21 or sup
ua = API_ID22 or sup
va = API_ID23 or sup
wa = API_ID24 or sup
xa = API_ID25 or sup
sap = API_H
ab = API_H2 or sap
bb = API_H3 or sap
cb = API_H4 or sap
db = API_H5 or sap
eb = API_H6 or sap
fb = API_H7 or sap
gb = API_H8 or sap
hb = API_H9 or sap
ib = API_H10 or sap
jb = API_H11 or sap
kb = API_H12 or sap
lb = API_H13 or sap
mb = API_H14 or sap
nb = API_H15 or sap
ob = API_H16 or sap
pb = API_H17 or sap
qb = API_H18 or sap
rb = API_H19 or sap
sb = API_H20 or sap
tb = API_H21 or sap
ub = API_H22 or sap
vb = API_H23 or sap
wb = API_H24 or sap
xb = API_H25 or sap
smex = STRING
smexx = STRING2
smexxx = STRING3
smexxxx = STRING4
smexxxxx = STRING5
sixth = STRING6
seven = STRING7
eight = STRING8
ninth = STRING9
tenth = STRING10
eleve = STRING11
twelv = STRING12
thirt = STRING13
forte = STRING14
fifth = STRING15
sieee = STRING16
seeee = STRING17
eieee = STRING18
nieee = STRING19
gandu = STRING20
ekish = STRING21
baish = STRING22
teish = STRING23
tfour = STRING24
tfive = STRING25
idk = ""
ydk = ""
wdk = ""
sdk = ""
hdk = ""
adk = ""
bdk = ""
cdk = ""
edk = ""
ddk = ""
vkk = ""
kkk = ""
lkk = ""
mkk = ""
sid = ""
shy = ""
aan = ""
ake = ""
eel = ""
khu = ""
shi = ""
yaa = ""
dav = ""
raj = ""
put = ""
que = {}
SMEX_USERS = []
for x in SUDO:
SMEX_USERS.append(x)
async def start_yukki():
global idk
global ydk
global wdk
global sdk
global hdk
global adk
global bdk
global cdk
global ddk
global edk
global vkk
global kkk
global lkk
global mkk
global sid
global shy
global aan
global ake
global eel
global khu
global shi
global yaa
global dav
global raj
global put
if smex:
session_name = StringSession(str(smex))
print("String 1 Found")
idk = TelegramClient(
session=session_name,
api_id=sup,
api_hash=sap,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
try:
print("Booting Up The Client 1")
await idk.start()
botme = await idk.get_me()
await idk(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await idk(functions.channels.JoinChannelRequest(channel="@LegendBot_AI"))
await idk(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 1 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 1 not Found")
session_name = "startup"
idk = TelegramClient(session_name, sup, sap)
try:
await idk.start()
except Exception:
pass
if smexx:
session_name = StringSession(str(smexx))
print("String 2 Found")
ydk = TelegramClient(
session=session_name,
api_id=aa,
api_hash=ab,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
try:
print("Booting Up The Client 2")
await ydk.start()
await ydk(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await ydk(functions.channels.JoinChannelRequest(channel="@LegendBot_AI"))
await ydk(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
botme = await ydk.get_me()
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 2 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 2 not Found")
session_name = "startup"
ydk = TelegramClient(session_name, aa, ab)
try:
await ydk.start()
except Exception:
pass
if smexxx:
session_name = StringSession(str(smexxx))
print("String 3 Found")
wdk = TelegramClient(
session=session_name,
api_id=ba,
api_hash=bb,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# wdk = TelegramClient(StringSession(session_name), ba, bb)
try:
print("Booting Up The Client 3")
await wdk.start()
await wdk(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await wdk(functions.channels.JoinChannelRequest(channel="@LegendBot_AI"))
await wdk(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
botme = await wdk.get_me()
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 3 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 3 not Found")
session_name = "startup"
wdk = TelegramClient(
session=session_name,
api_id=ba,
api_hash=bb,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# wdk = TelegramClient(session_name, ba, bb)
try:
await wdk.start()
except Exception:
pass
if smexxxx:
session_name = StringSession(str(smexxxx))
print("String 4 Found")
hdk = TelegramClient(
session=session_name,
api_id=ca,
api_hash=cb,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# hdk = TelegramClient(StringSession(session_name), ca, cb)
try:
print("Booting Up The Client 4")
await hdk.start()
await hdk(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await hdk(functions.channels.JoinChannelRequest(channel="@LegendBot_AI"))
await hdk(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
botme = await hdk.get_me()
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 4 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 4 not Found")
session_name = "startup"
hdk = TelegramClient(
session=session_name,
api_id=ca,
api_hash=cb,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# hdk = TelegramClient(session_name, ca, cb)
try:
await hdk.start()
except Exception:
pass
if smexxxxx:
session_name = StringSession(str(smexxxxx))
print("String 5 Found")
sdk = TelegramClient(
session=session_name,
api_id=da,
api_hash=db,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# sdk = TelegramClient(StringSession(session_name), da, db)
try:
print("Booting Up The Client 5")
await sdk.start()
await sdk(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await sdk(functions.channels.JoinChannelRequest(channel="@LegendBot_AI"))
await sdk(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
botme = await sdk.get_me()
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 5 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 5 not Found")
session_name = "startup"
sdk = TelegramClient(
session=session_name,
api_id=da,
api_hash=db,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# sdk = TelegramClient(session_name, da, db)
try:
await sdk.start()
except Exception:
pass
if sixth:
session_name = StringSession(str(sixth))
print("String 6 Found")
adk = TelegramClient(
session=session_name,
api_id=ea,
api_hash=eb,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# adk = TelegramClient(StringSession(session_name), ea, eb)
try:
print("Booting Up The Client 6")
await adk.start()
await adk(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await adk(functions.channels.JoinChannelRequest(channel="@LegendBot_AI "))
await adk(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
botme = await adk.get_me()
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 6 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 6 not Found")
session_name = "startup"
adk = TelegramClient(
session=session_name,
api_id=ea,
api_hash=eb,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# adk = TelegramClient(session_name, ea, eb)
try:
await adk.start()
except Exception:
pass
if seven:
session_name = StringSession(str(seven))
print("String 7 Found")
bdk = TelegramClient(
session=session_name,
api_id=fa,
api_hash=fb,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# bdk = TelegramClient(StringSession(session_name), fa, fb)
try:
print("Booting Up The Client 7")
await bdk.start()
await bdk(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await bdk(functions.channels.JoinChannelRequest(channel="@LegendBot_AI"))
await bdk(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
botme = await bdk.get_me()
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 7 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 7 not Found")
session_name = "startup"
bdk = TelegramClient(
session=session_name,
api_id=fa,
api_hash=fb,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# bdk = TelegramClient(session_name, fa, fb)
try:
await bdk.start()
except Exception:
pass
if eight:
session_name = StringSession(str(eight))
print("String 8 Found")
cdk = TelegramClient(
session=session_name,
api_id=ga,
api_hash=gb,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# cdk = TelegramClient(StringSession(session_name), ga, gb)
try:
print("Booting Up The Client 8")
await cdk.start()
await cdk(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await cdk(functions.channels.JoinChannelRequest(channel="@LegendBot_AI"))
await cdk(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
botme = await cdk.get_me()
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 8 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 8 not Found")
session_name = "startup"
cdk = TelegramClient(session_name, ga, gb)
try:
await cdk.start()
except Exception:
pass
if ninth:
session_name = StringSession(str(ninth))
print("String 9 Found")
ddk = TelegramClient(
session=session_name,
api_id=ha,
api_hash=hb,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# ddk = TelegramClient(StringSession(session_name), ha, hb)
try:
print("Booting Up The Client 9")
await ddk.start()
await ddk(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await ddk(functions.channels.JoinChannelRequest(channel="@LegendBot_AI"))
await ddk(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
botme = await ddk.get_me()
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 9 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 9 not Found")
session_name = "startup"
ddk = TelegramClient(session_name, ha, hb)
try:
await ddk.start()
except Exception:
pass
if tenth:
session_name = StringSession(str(tenth))
print("String 10 Found")
edk = TelegramClient(
session=session_name,
api_id=ia,
api_hash=ib,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# edk = TelegramClient(StringSession(session_name), ia, ib)
try:
print("Booting Up The Client 10")
await edk.start()
await edk(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await edk(functions.channels.JoinChannelRequest(channel="@LegendBot_AI"))
await edk(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
botme = await edk.get_me()
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 10 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 10 not Found")
session_name = "startup"
edk = TelegramClient(session_name, ia, ib)
try:
await edk.start()
except Exception:
pass
if eleve:
session_name = StringSession(str(eleve))
print("String 11 Found")
vkk = TelegramClient(
session=session_name,
api_id=ja,
api_hash=jb,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# vkk = TelegramClient(StringSession(session_name), ja, jb)
try:
print("Booting Up The Client 11")
await vkk.start()
await vkk(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await vkk(functions.channels.JoinChannelRequest(channel="@LegendBot_AI"))
await vkk(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
botme = await vkk.get_me()
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 11 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 11 not Found")
session_name = "startup"
vkk = TelegramClient(session_name, ja, jb)
try:
await vkk.start()
except Exception:
pass
if twelv:
session_name = StringSession(str(twelv))
kkk = TelegramClient(
session=session_name,
api_id=ka,
api_hash=kb,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# kkk = TelegramClient(StringSession(session_name), ka, kb)
try:
print("Booting Up The Client 12")
await kkk.start()
await kkk(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await kkk(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
await kkk(functions.channels.JoinChannelRequest(channel="@LegendBot_AI"))
botme = await kkk.get_me()
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 12 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 12 not Found")
session_name = "startup"
kkk = TelegramClient(session_name, ka, kb)
try:
await kkk.start()
except Exception:
pass
if thirt:
session_name = StringSession(str(thirt))
print("String 13 Found")
lkk = TelegramClient(
session=session_name,
api_id=la,
api_hash=lb,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# lkk = TelegramClient(StringSession(session_name), la, lb)
try:
print("Booting Up The Client 13")
await lkk.start()
await lkk(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await lkk(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
await lkk(functions.channels.JoinChannelRequest(channel="@LegendBot_AI"))
botme = await lkk.get_me()
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 13 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 13 not Found")
session_name = "startup"
lkk = TelegramClient(session_name, la, lb)
try:
await lkk.start()
except Exception:
pass
if forte:
session_name = StringSession(str(forte))
print("String 14 Found")
mkk = TelegramClient(
session=session_name,
api_id=ma,
api_hash=mb,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# mkk = TelegramClient(StringSession(session_name), ma, mb)
try:
print("Booting Up The Client 14")
await mkk.start()
await mkk(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await mkk(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
await mkk(functions.channels.JoinChannelRequest(channel="@LegendBot_AI"))
botme = await mkk.get_me()
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 14 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 14 not Found")
session_name = "startup"
mkk = TelegramClient(session_name, ma, mb)
try:
await mkk.start()
except Exception:
pass
if fifth:
session_name = StringSession(str(fifth))
print("String 15 Found")
sid = TelegramClient(
session=session_name,
api_id=na,
api_hash=nb,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# sid = TelegramClient(StringSession(session_name), na, nb)
try:
print("Booting Up The Client 15")
await sid.start()
await sid(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await sid(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
await sid(functions.channels.JoinChannelRequest(channel="@LegendBot_AI"))
botme = await sid.get_me()
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 15 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 15 not Found")
session_name = "startup"
sid = TelegramClient(session_name, na, nb)
try:
await sid.start()
except Exception:
pass
if sieee:
session_name = StringSession(str(sieee))
print("String 16 Found")
shy = TelegramClient(
session=session_name,
api_id=oa,
api_hash=ob,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# shy = TelegramClient(StringSession(session_name), oa, ob)
try:
print("Booting Up The Client 16")
await shy.start()
botme = await shy.get_me()
await shy(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await shy(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
await shy(functions.channels.JoinChannelRequest(channel="@LegendBot_AI"))
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 16 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 16 not Found")
session_name = "startup"
shy = TelegramClient(session_name, oa, ob)
try:
await shy.start()
except Exception:
pass
if seeee:
session_name = StringSession(str(seeee))
print("String 17 Found")
aan = TelegramClient(
session=session_name,
api_id=pa,
api_hash=pb,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# aan = TelegramClient(StringSession(session_name), pa, pb)
try:
print("Booting Up The Client 17")
await aan.start()
botme = await aan.get_me()
await aan(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await aan(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
await aan(functions.channels.JoinChannelRequest(channel="@LegendBot_AI"))
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 17 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 17 not Found")
session_name = "startup"
aan = TelegramClient(session_name, pa, pb)
try:
await aan.start()
except Exception:
pass
if eieee:
session_name = StringSession(str(eieee))
print("String 18 Found")
ake = TelegramClient(
session=session_name,
api_id=qa,
api_hash=qb,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# ake = TelegramClient(StringSession(session_name), qa, qb)
try:
print("Booting Up The Client 18")
await ake.start()
botme = await ake.get_me()
await ake(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await ake(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
await ake(functions.channels.JoinChannelRequest(channel="@LegendBot_AI"))
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 18 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 18 not Found")
session_name = "startup"
ake = TelegramClient(session_name, qa, qb)
try:
await ake.start()
except Exception:
pass
if nieee:
session_name = StringSession(str(nieee))
print("String 19 Found")
eel = TelegramClient(
session=session_name,
api_id=ra,
api_hash=rb,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# eel = TelegramClient(StringSession(session_name), ra, rb)
try:
print("Booting Up The Client 19")
await eel.start()
botme = await eel.get_me()
await eel(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await eel(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
await eel(functions.channels.JoinChannelRequest(channel="@LegendBot_AI "))
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 19 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 19 not Found")
session_name = "startup"
eel = TelegramClient(session_name, ra, rb)
try:
await idk.start()
except Exception:
pass
if gandu:
session_name = StringSession(str(gandu))
print("String 20 Found")
khu = TelegramClient(
session=session_name,
api_id=sa,
api_hash=sb,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# khu = TelegramClient(StringSession(session_name), sa, sb)
try:
print("Booting Up The Client 20")
await khu.start()
botme = await khu.get_me()
await khu(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await khu(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
await khu(functions.channels.JoinChannelRequest(channel="@LegendBot_AI"))
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 20 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 20 not Found")
session_name = "startup"
khu = TelegramClient(session_name, sa, sb)
try:
await khu.start()
except Exception:
pass
if ekish:
session_name = StringSession(str(ekish))
print("String 21 Found")
shi = TelegramClient(
session=session_name,
api_id=ta,
api_hash=tb,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# shi = TelegramClient(StringSession(session_name), ta, tb)
try:
print("Booting Up The Client 21")
await shi.start()
botme = await shi.get_me()
await shi(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await shi(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
await shi(functions.channels.JoinChannelRequest(channel="@LegendBot_AI "))
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e:
print(e)
print("Check String 21 & Replace It. Join @LegendBot_OP For Any Help")
else:
print("Session 21 not Found")
session_name = "startup"
shi = TelegramClient(session_name, ta, tb)
try:
await shi.start()
except Exception:
pass
if baish:
session_name = StringSession(str(baish))
print("String 22 Found")
yaa = TelegramClient(
session=session_name,
api_id=ua,
api_hash=ub,
connection=ConnectionTcpAbridged,
auto_reconnect=True,
connection_retries=None,
)
# yaa = TelegramClient(StringSession(session_name), ua, ub)
try:
print("Booting Up The Client 22")
await yaa.start()
botme = await yaa.get_me()
await yaa(functions.channels.JoinChannelRequest(channel="@LegendBot_OP"))
await yaa(functions.channels.JoinChannelRequest(channel=f"@{grp}"))
await yaa(functions.channels.JoinChannelRequest(channel="@LegendBot_AI "))
botid = telethon.utils.get_peer_id(botme)
SMEX_USERS.append(botid)
except Exception as e: