-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bio.py
1895 lines (1685 loc) · 83.2 KB
/
Bio.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
__version__ = (3, 1, 0)
# ███████╗███████╗████████╗██╗░█████╗░░██████╗░█████╗░███████╗
# ╚════██║██╔════╝╚══██╔══╝██║██╔══██╗██╔════╝██╔══██╗██╔════╝
# ░░███╔═╝█████╗░░░░░██║░░░██║██║░░╚═╝╚█████╗░██║░░╚═╝█████╗░░
# ██╔══╝░░██╔══╝░░░░░██║░░░██║██║░░██╗░╚═══██╗██║░░██╗██╔══╝░░
# ███████╗███████╗░░░██║░░░██║╚█████╔╝██████╔╝╚█████╔╝███████╗
# ╚══════╝╚══════╝░░░╚═╝░░░╚═╝░╚════╝░╚═════╝░░╚════╝░╚══════
# НЕ © Copyright 2022
# https://t.me/zeticsce
# developer of Num: @trololo_1
# meta developer: @zeticsce
from .. import loader, utils # noqa
import asyncio
import contextlib
import pytz
import re
re._MAXCACHE = 3000
import telethon
from telethon.tl.types import MessageEntityTextUrl, Message
from telethon.tl.functions.users import GetFullUserRequest
import json as JSON
from telethon.errors.rpcerrorlist import FloodWaitError
from datetime import datetime, date, time
import logging
import types
from ..inline.types import InlineCall
import random
import subprocess
import string, pickle
def validate_text(text: str):
txt = text.replace("<u>", "").replace("</u>", "").replace("<i>", "").replace("</i>", "").replace("<b>", "").replace("</b>", "").replace("<s>", "").replace("</s>", "").replace("<tg-spoiler>", "").replace("</tg-spoiler><s>", "")
return txt
@loader.tds
class BioMod(loader.Module):
"""
Ваша вторая рука в биовойнах)
"""
strings = {
"name": "Bio",
"not_reply": "<emoji document_id=5215273032553078755>❌</emoji> Нет реплая.",
"not_args": "<emoji document_id=5215273032553078755>❌</emoji> Нет аргументов.",
"nolink": "<emoji document_id=5197248832928227386>😢</emoji> Нет ссылки на жертву.",
"hueta": "🤔 Что за хуета?",
"r.save":
"<emoji document_id=5212932275376759608>🦠</emoji> Жертва <b><code>{}</code></b> сохранена.\n"
"<b>☣️ +{}{}</b> био-опыта.",
"auto.save":
"<emoji document_id=5212932275376759608>🦠</emoji> Жертва <b><code>{}</code></b> сохранена.\n"
"<b>☣️ {}+{}</b> био-опыта.",
"search":
"<emoji document_id=5212932275376759608>✅</emoji> Жертва <code>{}</code> приносит:\n"
"<b>☣️ +{} био-опыта.</b>\n"
"📆 Дата: <i>{}</i>",
"nf": "<emoji document_id=5215273032553078755>❎</emoji> Жертва не найдена.",
"no_user": "<emoji document_id=5215273032553078755>❎</emoji> user {} don't exist.",
"nous": "<emoji document_id=5215273032553078755>❎</emoji> Жертва или пользователь не существует.",
"anf": "<emoji document_id=5215329773366025981>🤔</emoji> а кого искать?..",
"aicmd":
"<b>🥷🏻</b> <a href='tg://openmessage?user_id={}'>{}</a>\n"
"<b>🆔:</b> <code>@{}</code>",
"myid": "<b>My 🆔:</b> <code>@{}</code>",
"guidedov":
"<b>❔ Как использовать доверку:</b>\n"
"\n<b>{0}</b> <code>бей</code> | <code>кус</code>[ьайни] | <code>зарази</code>[тьть] " # 🔽
"| <code>еб</code>[ниажшь] | <code>уеб</code>[жиаошть] [1-10] (@id|@user|link)"
"\n<b>{0}</b> <code>цен</code>[ау] | <code>вч</code>[ек] <i>(цена вакцины)</i>"
"\n<b>{0}</b> <code>вак</code>[цинау] | <code>леч</code>[ись] | <code>хи</code>[лльсяйинг] | <code>лек</code>[арство]"
"\n<b>{0}</b> <code>жертв</code>[ыау] | <code>еж</code>[ау]"
"\n<b>{0}</b> <code>бол</code>[езьни]"
"\n<b>{0}</b> <code>#лаб</code>[уа] | <code>%лаб</code>[уа] | <code>/лаб</code>[уа]"
"\n<b>{0}</b> <code>увед</code>[ыаомления] <i>(+вирусы)</i>"
"\n<b>{0}</b> <code>-вирус</code>[ыа]\n\n"
"〽️ <b>Апгрейд навыков:</b>\n"
"<b>{0} навык (0-5)</b> или\n<b>{0} чек навык (0-5)</b>\n"
"<i> Например: <b>{0} квалификация 4</b>\n"
"(улучшает квалификацию учённых на 4 ур.)</i>\n\n"
"〽️ <b>Доступные навыки:</b>\n"
"🧪 Патоген (<b>пат</b> [огены])\n👨🔬 Квалификация (<b>квал</b> [ификацияула] | <b>разраб</b> [откау])\n"
"🦠 Заразность (<b>зз</b> | <b>зараз</b> [аностьку])\n🛡 Иммунитет (<b>иммун</b> [итеткау])\n"
"☠️ Летальность (<b>летал</b> [ьностькау])\n🕵️♂️ Безопасность (<b>сб</b> | <b>служб</b> [ау] | <b>безопасно</b> [сть])\n\n"
"<b>🔎 Поиск жертв в зарлисте:</b>\n"
"<b>{0} з [ @id ]</b> или\n"
"<b>{0} з [ реплай ]</b>\n"
"<i>см. <code>{1}config bio</code> для настройки.</i>",
"dov":
"<b>🌘 <code>{5}Дов сет</code> [ id|реплай ]</b> --- <b>Добавить/удалить саппорта.</b>\n"
"<i> ✨ Доверенные пользователи:</i>\n"
"{0}\n\n"
"<b>🌘 <code>{5}Дов ник</code> ник</b> --- <b>Установить ник</b>.\n <i>Например: <b><code>.Дов ник {3}</code></b></i>.\n"
"<b> 🔰 Ваш ник: <code>{1}</code></b>\n\n"
"<b>🌘 <code>{5}Дов пуск</code></b> --- <b>Запустить/Остановить</b>.\n"
"<b> {2}</b>\n"
"<i><b>Доступ открыт к:</b></i>\n{4}",
"zarlistHelp":
"<b>Как пользоваться зарлистом:</b>\n\n"
"<i>По умолчанию, все новые жертвы автоматически заносятся в зарлист,"
" кроме, когда в сообщении ириса о заражении нету ссылки на жертву.</i>\n\n"
"Шаблоны для добавления жертвы:\n"
"{0}зар @id 1.1к\n"
"жд @id 1.1к\n\n"
"Чтобы найти жертву используй:\n"
"{0}зар @id/реплай ф\n"
"{1} з @id/реплай\n"
"жл @id/реплай\n\n"
"Также, инфу о бонусе с жертвы можно увидеть рядом с именем при использовании команды {0}б",
"user_rm": "❎ Саппорт <b><code>{}</code></b> удалён.",
"user_add": "<emoji document_id=5212932275376759608>✅</emoji> Саппорт <b><code>{}</code></b> добавлен!",
"wrong_nick": "<b>📝 Введите ник.</b>",
"nick_add": "🔰 Ник <b>{}</b> установлен!",
"dov_start": "<b><emoji document_id=5212932275376759608>✅</emoji> Успешно запущено!</b>",
"dov_stop": "<b>❎ Успешно остановлено.</b>",
"dov.wrong_args":
"<b><emoji document_id=5215273032553078755>❌</emoji> Неизвестный аргумент.</b>\n"
"<i>📝 Введите <code>.дов</code> для просмотра команд.</i>",
"wrong_id": "👀 Правильно 🆔 введи, дубина.",
"ex": "❎ Исключение: <code>{}</code>",
"wrong_ot-do": '<emoji document_id=5215273032553078755>❌</emoji> еблан, Используй <b>правильно</b> функцию "от-до".',
"no_sargs": "<emoji document_id=5215273032553078755>❌</emoji> Не найдено совпадение в начале строк с аргументами.",
"no_link": "<emoji document_id=5215273032553078755>❌</emoji> Ссылка не найдена.",
"too_much_args": "<emoji document_id=5215273032553078755>❌</emoji> Кол-во аргументов <b>больше</b> одного, либо начинается <b>не</b> со знака <code>@</code>",
"no_zar_reply": "<emoji document_id=5215273032553078755>❌</emoji> Нет реплая на сообщение ириса о заражении.",
"empty_zar": "<emoji document_id=5215273032553078755>❌</emoji> Список заражений пуст.",
"wrong_zar_reply": '<emoji document_id=5215273032553078755>❌</emoji> Реплай <b>не</b> на сообщение ириса о заражении "<b>...подверг заражению...</b>"',
"wrong_cmd": "<emoji document_id=5215273032553078755>❌</emoji> Команда введена некорректно.",
"empty_ex": "<emoji document_id=5215273032553078755>❌</emoji> Cписок исключений пуст.",
"tids": "<b><emoji document_id=5212932275376759608>✅</emoji> Id'ы успешно извлечены.</b>",
"tzar": "<emoji document_id=5212932275376759608>✅</emoji> Заражения завершены.",
"clrex": "❎ Список исключений очищен.",
"zar_rm": "❎ Жертва <b><code>{0}</code></b> {1}удалена.",
"exadd": "✅ Пользователь <code>{}</code> в исключениях.",
"exrm": "❎ Пользователь <code>{}</code> удален.",
"clrzar": "✅ Зарлист <b>очищен</b>.",
"guide":
"<b>Помощь по модулю BioHelper:</b>\n\n"
"<code>{0}biohelp дов</code> 👈 Помощь по доверке\n"
"<code>{0}biohelp зарлист</code> 👈 Помощь по зарлисту"
}
async def client_ready(self, client, db):
self.db = db
self.client = client #IDS
if not self.db.get("NumMod", "exUsers", False):
self.db.set("NumMod", "exUsers", [])
if not self.db.get("NumMod", "infList", False):
self.db.set("NumMod", "infList", {})
async def айcmd(self, message):
"""
[reply/arg]
Получает айди пользователя.
"""
reply = await message.get_reply_message()
args = utils.get_args(message)
if not reply:
if not args:
user = await message.client.get_entity(message.sender_id)
link = '<a href="t.me/{}">{}</a>'.format(user.username, user.first_name) if user.username else '<a href="tg://openmessage?user_id={}">{}</a>'.format(user.id, user.first_name)
return await message.reply(
f"<emoji document_id=5780683340810030158>✈️</emoji> {link}\n"
f"<emoji document_id=4918133202012340741>👤</emoji> <code>@{user.id}</code>"
)
user = 0
if re.fullmatch(r"@\D\w{3,32}", args[0], flags=re.ASCII):
user = await message.client.get_entity(args[0])
elif re.fullmatch(r"@\d{4,14}", args[0], flags=re.ASCII):
user = args[0].replace("@", "")
user = await message.client.get_entity(int(user))
elif re.fullmatch(r"\d{4,14}", args[0], flags=re.ASCII):
user = await message.client.get_entity(int(args[0]))
elif re.fullmatch(r"\D\w{3,32}", args[0], flags=re.ASCII):
user = await message.client.get_entity(args[0])
if not user:
return await message.reply("ты ввел хуйню реально")
link = '<a href="t.me/{}">{}</a>'.format(user.username, user.first_name) if user.username else '<a href="tg://openmessage?user_id={}">{}</a>'.format(user.id, user.first_name)
return await message.reply(
f"<emoji document_id=5780683340810030158>✈️</emoji> {link}\n"
f"<emoji document_id=4918133202012340741>👤</emoji> <code>@{user.id}</code>"
)
if not args:
user = await message.client.get_entity(reply.sender_id)
link = '<a href="t.me/{}">{}</a>'.format(user.username, user.first_name) if user.username else '<a href="tg://openmessage?user_id={}">{}</a>'.format(user.id, user.first_name)
return await message.reply(
f"<emoji document_id=5780683340810030158>✈️</emoji> {link}\n"
f"<emoji document_id=4918133202012340741>👤</emoji> <code>@{user.id}</code>"
)
user = 0
if re.fullmatch(r"@\D\w{3,32}", args[0], flags=re.ASCII):
user = await message.client.get_entity(args[0])
elif re.fullmatch(r"@\d{4,14}", args[0], flags=re.ASCII):
user = args[0].replace("@", "")
user = await message.client.get_entity(int(user))
elif re.fullmatch(r"\d{4,14}", args[0], flags=re.ASCII):
user = await message.client.get_entity(int(args[0]))
elif re.fullmatch(r"\D\w{3,32}", args[0], flags=re.ASCII):
user = await message.client.get_entity(args[0])
if not user:
return await message.reply("ты ввел хуйню реально")
link = '<a href="t.me/{}">{}</a>'.format(user.username, user.first_name) if user.username else '<a href="tg://openmessage?user_id={}">{}</a>'.format(user.id, user.first_name)
return await message.reply(
f"<emoji document_id=5780683340810030158>✈️</emoji> {link}\n"
f"<emoji document_id=4918133202012340741>👤</emoji> <code>@{user.id}</code>"
)
### Module Num by trololo_1
async def зcmd(self, message):
"""
[arg] [arg] [arg]....
В качестве аргументов используй числа или первые символы строки.
(без них бьет по ответу с 10 патов)
"""
reply = await message.get_reply_message()
exlist = self.db.get("NumMod", "exUsers")
count_st = 0
count_hf = 0
if not reply or not reply and not args:
await message.reply(
self.strings("not_reply")
)
return
list_args = []
args = utils.get_args_raw(message)
if not args:
vlad = reply.sender_id
hui = f'<code>/заразить 10 @{vlad}<code>\nспасибо <emoji document_id=5215327827745839526>❤️</emoji>'
await message.client.send_message(message.peer_id, hui)
return
for i in args.split(' '):
if '-' in i:
ot_do = i.split('-')
try:
list_args.extend(str(x) for x in range(int(ot_do[0]), int(ot_do[1]) + 1))
except Exception:
await message.reply(
self.strings("wrong_ot-do")
)
return
else:
list_args.append(i)
a = reply.text
lis = a.splitlines()
for start in list_args:
for x in lis:
if x.lower().startswith(str(start.lower())):
count_st = 1
if 'href="' in x:
count_hf = 1
del_msg = 0
if not del_msg:
await message.delete()
del_msg += 1
b = x.find('href="') + 6
c = x.find('">')
link = x[b:c]
if link.startswith('tg'):
users = '@' + link.split('=')[1]
if users in exlist:
await message.client.send_message(message.peer_id,
self.strings("ex").format(
users
),
reply_to=reply
)
else:
await message.client.send_message(message.peer_id,
f'<code>/заразить 1 {users}</code>\n<code>/купить вакцину</code>',
reply_to=reply)
elif link.startswith('https://t.me'):
a = '@' + str(link.split('/')[3])
if a in exlist:
await message.client.send_message(message.peer_id,
self.strings("ex").format(
users
),
reply_to=reply
)
else:
await message.client.send_message(message.peer_id,
f'<code>/заразить 1 {a}</code>\n<code>/купить вакцину</code>',
reply_to=reply)
else:
await message.reply(
self.strings("hueta")
)
break
await asyncio.sleep(3.3)
if not count_st:
await message.reply(
self.strings("no_sargs")
)
elif not count_hf:
await message.reply(
self.strings("no_link")
)
elif len(list_args) >= 5:
await message.reply(
self.strings("tzar")
)
async def оcmd(self, message):
"""
Заражает всех по реплаю.
Используй ответ на сообщение с @id/@user/link
"""
reply = await message.get_reply_message()
exlist = self.db.get("NumMod", "exUsers")
err = "1"
if not reply:
await message.reply(
self.strings("not_reply")
)
return
json = JSON.loads(reply.to_json())
try:
for i in range(len(reply.entities)):
try:
link = json["entities"][i]["url"]
if link.startswith('tg'):
users = '@' + link.split('=')[1]
if users in exlist:
await message.reply(
self.strings("ex").format(
users
)
)
else:
await message.reply(f'/заразить {users}')
elif link.startswith('https://t.me'):
a = '@' + str(link.split("/")[3])
if a in exlist:
await message.reply(
self.strings("ex").format(
a
)
)
else:
await message.reply(f'/заразить {a}')
else:
await message.reply(
self.strings("hueta")
)
except Exception:
blayt = reply.raw_text[json["entities"][i]["offset"]:json["entities"][i]["offset"] + json["entities"][i]["length"]]
if blayt in exlist:
await message.reply(
self.strings("ex").format(
blayt
)
)
else:
await message.reply(f"/заразить {blayt}")
await asyncio.sleep(3.3)
except TypeError:
err = "2"
await message.edit(
self.strings("hueta")
)
if err != "2":
await message.delete()
async def искcmd(self, message):
"""
Добавляет исключения для команд .з и .о
Используй: .иск {@user/@id/reply}
"""
reply = await message.get_reply_message()
args = utils.get_args_raw(message)
exlistGet = self.db.get("NumMod", "exUsers")
exlist = exlistGet.copy()
if not args:
#if reply:
# rid = "@" + str(reply.sender_id)
if len(exlist) < 1:
await message.reply(
self.strings("empty_zar")
)
return
exsms = ''.join(f'<b>{count}.</b> <code>{i}</code>\n' for count, i in enumerate(exlist, start=1))
await utils.answer(message, exsms)
return
#if reply:
if args == 'clear':
exlist.clear()
self.db.set("NumMod", "exUsers", exlist)
await message.reply(
self.strings("clrex")
)
return
if len(args.split(' ')) > 1 or args[0] != '@':
await message.reply(
self.strings("too_much_args")
)
return
if args in exlist:
exlist.remove(args)
self.db.set("NumMod", "exUsers", exlist)
await message.edit(
self.strings("exrm").format(
args
)
)
return
exlist.append(args)
self.db.set("NumMod", "exUsers", exlist)
await message.edit(
self.strings("exadd").format(
args
)
)
async def зарcmd(self, message):
"""
Список ваших заражений.
.зар {@id} {чис.ло} {арг}
Для удаления: .зар {@id}
Аргументы:
к -> добавить букву k(тысяч) к числу.
ф/о -> поиск по ид'у/юзеру.
р -> добавлению в список по реплаю.
-backup -> бэкап зарлиста в файл.
-restore -> добавление жертв из бэкапа в зарлист.
-restore --y -> полная замена зарлиста на бэкап.
"""
pref = self.get_prefix()
norm_args = utils.get_args(message)
infList = self.db.get("NumMod", "infList")
file_name = 'zarlistbackup.pickle'
id = message.to_id
reply = await message.get_reply_message()
args = utils.get_args_raw(message)
infList = self.db.get("NumMod", "infList")
timezone = "Europe/Kiev"
vremya = datetime.now(pytz.timezone(timezone)).strftime("%d.%m")
k = ''
with contextlib.suppress(Exception):
args_list = args.split(' ')
###
args_backup, args_restore, args_restore_y = [
"backup",
"-backup",
"-b",
"--backup",
"--b"],[
"restore",
"-restore",
"--restore",
"-r",
"--r"],[
"--y"
]
if args in args_backup:
try:
await message.delete()
dict_all = { 'zar': infList}
with open(file_name, 'wb') as f:
pickle.dump(dict_all, f)
return await message.client.send_file(id, file_name)
except Exception as e:
return await utils.answer(message, f"<b>Ошибка:\n</b>{e}")
try:
if norm_args[0] in args_restore:
hueta_govnokod_hikari_gay = 0
try:
if norm_args[1] in args_restore_y:
hueta_govnokod_hikari_gay = 1
except:
pass
reply_document = ""
try:
reply_document = reply.document
except AttributeError:
pass
try:
if not reply:
return await message.reply(
self.strings("not_reply")
)
if not reply_document:
return await utils.answer(message, f"<b>ебалай, это не файл.</b>")
await reply.download_media(file_name)
with open(file_name, 'rb') as f:
data = pickle.load(f)
zar = data['zar']
result_zar = dict(infList, **zar)
if hueta_govnokod_hikari_gay:
infList.clear()
a = "с заменой " if hueta_govnokod_hikari_gay else ""
self.db.set("NumMod", "infList", result_zar)
return await utils.answer(message, f"<emoji document_id=5212932275376759608>✅</emoji> <b>Бекап зарлиста {a}загружен!</b>")
except Exception as e:
return await utils.answer(message, f"<b>пиздец, Ошибка:\n</b>{e}")
except IndexError:
pass
if not args:
if not infList:
return await message.edit(
self.strings("empty_zar")
)
sms = "🔖 Список ваших заражений:\n\n"
sms += ''.join(
f"• {key} +{value[0]} [{value[1]}]\n"
for key, value in infList.items()
)
return await utils.answer(message, sms)
##
###
if 'р' in args.lower():
reply = await message.get_reply_message()
if not reply:
return await message.reply(
self.strings("no_zar_reply")
)
##
trueZ = 'подверг заражению'
trueZ2 = 'подвергла заражению' # да, я еблан)
text = reply.text
if trueZ not in reply.text and trueZ2 not in reply.text:
await message.reply(
self.strings("wrong_zar_reply")
)
else: # ☣
try:
ept = ""
text = reply.text
x = text.index('☣') + 4
count = text[x:].split(' ', maxsplit=1)[0]
x = text.index('user?id=') + 8
user = '@' + text[x:].split('"', maxsplit=1)[0]
infList[user] = [str(count), vremya]
self.db.set("NumMod", "infList", infList)
await message.reply(
self.strings("r.save").format(
user, count, ept
)
)
except ValueError:
await message.reply(
self.strings("nolink")
)
elif args_list[0] == "clear84561":
infList.clear()
self.db.set("NumMod", "infList", infList)
await message.reply(
self.strings("clrzar")
)
elif 'ф' in args.lower() or 'о' in args.lower():
zhertva = 0
reply = await message.get_reply_message()
if not reply:
zhertva = 0
if re.fullmatch(r"@\d{3,10}", args_list[0], flags=re.ASCII):
zhertva = args_list[0]
if re.fullmatch(r"@\D\w{3,32}", args_list[0], flags=re.ASCII):
try:
get_id = await message.client.get_entity(args_list[0])
get_id = get_id.id
zhertva = "@" + str(get_id)
except ValueError:
return await message.reply(
self.strings("no_user").format(
args_list[0]
)
)
if not zhertva:
return await message.reply(
self.strings("wrong_cmd")
)
if zhertva in infList:
user = infList[zhertva]
await message.reply(
self.strings("search").format(
zhertva, user[0], user[1]
)
)
if zhertva not in infList:
await message.reply(
self.strings("nf")
)
if reply: # <- костыль для фикса UnboundLocalError: local variable 'reply' ...
rid = '@' + str(reply.sender_id)
zhertva = "R#C*N("
if re.fullmatch(r"@\d{3,10}", args_list[0], flags=re.ASCII):
zhertva = args_list[0]
if re.fullmatch(r"@\D\w{3,32}", args_list[0], flags=re.ASCII):
try:
get_id = await message.client.get_entity(args_list[0])
get_id = get_id.id
zhertva = "@" + str(get_id)
except:
return await message.reply(
self.strings("no_user").format(
args_list
)
)
if zhertva in infList:
user = infList[zhertva]
await message.reply(
self.strings("search").format(
zhertva, user[0], user[1]
)
)
elif rid in infList:
user = infList[rid]
await message.reply(
self.strings("search").format(
rid, user[0], user[1]
)
)
elif rid not in infList:
await message.reply(
self.strings("nf")
)
elif len(args_list) == 1 and args_list[0] in infList:
del_zar = f"(+{infList[args_list[0]][0]}) "
infList.pop(args_list[0])
self.db.set("NumMod", "infList", infList)
await message.reply(
self.strings("zar_rm").format(
args, del_zar
)
)
else:
k = ''
pas = 0
try:
user, count = str(args_list[0]), float(args_list[1])
except Exception:
try:
if "к" in args_list[1] or "k" in args_list[1]:
user = str(args_list[0])
args = str(args_list[1])
len_args = len(args_list[1])
count = args[:len_args-1]
count = float(count)
k += 'k'
pas = 1
else:
return await message.reply(
self.strings("wrong_cmd")
)
except:
return await message.reply(
self.strings("wrong_cmd")
)
if re.fullmatch(r"@\D{3,32}\w{3,32}", user, flags=re.ASCII):
get_id = await message.client.get_entity(user)
get_id = get_id.id
user = "@" + str(get_id)
if 'к' in args.lower() and pas == 0 or 'k' in args.lower() and pas == 0:
k += "k"
infList[user] = [str(count) + k, vremya]
self.db.set("NumMod", "infList", infList)
await message.reply(
self.strings("r.save").format(
user, count, k
)
)
async def довcmd(self, message):
"""
{args1} {args2 OR reply}
Введи команду для просмотра аргументов.
"""
args = utils.get_args_raw(message)
reply = await message.get_reply_message()
filter_and_users = self.db.get("NumMod", "numfilter", {'users': [], 'filter': None, 'status': False})
wnik = await self._client(GetFullUserRequest(message.sender_id))
ent = wnik.users[0]
a = self.config
pref = self.get_prefix()
dovs = ""
if a["Доступ к лабе"]:
dovs += "лабе, "
if a["Доступ к заражениям"]:
dovs += "заражениям, "
if a["Доступ к прокачке"]:
dovs += "прокачкам, "
if a["Доступ к зарлисту"]:
dovs += "зарлисту, "
if a["Доступ к жертвам"]:
dovs += "жертвам, "
if a["Доступ к болезням"]:
dovs += "болезням, "
if a["Доступ к вирусам"]:
dovs += "установке вирусов, "
if a["Доступ к хиллингу"]:
dovs += "хиллингу, "
len_dovs = len(dovs)
dovs_accept = dovs[:len_dovs-2]
dov_users = ', '.join(
f'<code>@{i}</code>' for i in filter_and_users['users']
)
if not args:
return await self.inline.form(
self.strings("dov").format(
dov_users,
filter_and_users['filter'] or '❌ Не установлен.',
'✅ Запущен' if self.config["Вкл/выкл"] else '❎ Остановлен',
ent.first_name if len(ent.first_name) <= 12 else "ник",
dovs_accept if dovs_accept != "" else "всё ограничено 👌",
pref
),
reply_markup={
"text": "Закрыть",
"callback": self.inline__close,
},
message=message,
disable_security=False
)
args = args.split(' ', maxsplit=1)
if len(args) == 1 and not reply and args[0] != 'пуск': #
return await utils.answer(message, '🤔 Не могу понять, что за хуета?..')
elif args[0] == 'сет':
try:
user_id = args[1]
if not user_id.isdigit():
return await message.reply(
self.strings("wrong_id")
)
except Exception:
user_id = str(reply.sender_id)
if user_id in filter_and_users['users']:
filter_and_users['users'].remove(user_id)
return await message.reply(
self.strings("user_rm").format(
user_id
)
)
elif user_id not in filter_and_users['users']:
filter_and_users['users'].append(user_id)
return await message.reply(
self.strings("user_add").format(
user_id
)
)
return self.db.set("NumMod", "numfilter", filter_and_users)
elif args[0] == 'ник':
try:
filter_and_users['filter'] = args[1].lower().strip()
self.db.set("NumMod", "numfilter", filter_and_users)
return await message.reply(
self.strings("nick_add").format(
args[1]
)
)
except Exception:
return await message.reply(
self.strings("wrong_nick")
)
elif args[0] == 'пуск':
if self.config["Вкл/выкл"]:
self.config["Вкл/выкл"] = False
return await message.reply(
self.strings("dov_stop")
)
else:
self.config["Вкл/выкл"] = True
return await message.reply(
self.strings("dov_start")
)
else:
return await message.reply(
self.strings("dov.wrong_args")
)
async def message_q( # спизжено из IrisLab
self,
text: str,
user_id: int,
mark_read: bool = False,
delete: bool = False,
):
"""Отправляет сообщение и возращает ответ"""
async with self.client.conversation(user_id, exclusive=False) as conv:
msg = await conv.send_message(text)
response = await conv.get_response()
if mark_read:
await conv.mark_read()
if delete:
await msg.delete()
await response.delete()
return response
async def watcher(self, message):
if not isinstance(message, telethon.tl.types.Message): return
filter_and_users = self.db.get("NumMod", "numfilter", {'users': [], 'filter': None, 'status': False})
user_id = str(message.sender_id)
sndr_id = message.sender_id
nik = filter_and_users["filter"]
text = message.raw_text.lower()
reply = await message.get_reply_message()
infList = self.db.get("NumMod", "infList")
args = utils.get_args(message)
############################################################# Авто Зарлист
get_me = await message.client.get_me()
timezone = "Europe/Kiev"
vremya = datetime.now(pytz.timezone(timezone)).strftime("%d.%m")
if re.search(r"подве.{2,4} заражению", text, flags=re.ASCII):
if not self.config["Автосохранение жертв"]:
return
split_text, r_text, msg_text = "", "", ""
try:
msg_text = message.text
split_text = msg_text.splitlines()
r_text = reply.text
except:
pass
irises = [
5443619563,
707693258,
5226378684,
5137994780,
5434504334,
1136703023
]
if message.sender_id not in irises:
return
attempts = "🗓 Отчёт об операции заражения объекта:"
podverg = split_text[0] if attempts not in msg_text else split_text[3]
retur = 0
try:
if podverg.startswith('🦠 <a href="https://t.me/'):
y = podverg.index('https://t.me/') + 13
user3 = podverg[y:].split('"', maxsplit=1)[0]
if user3.lower() != get_me.username.lower():
return
retur = 1
if podverg.startswith('🦠 <a href="tg:'):
y = podverg.index('user?id=') + 8
user3 = podverg[y:].split('"', maxsplit=1)[0]
if get_me.id != user3:
return
retur = 1
except ValueError:
pass
if sndr_id not in irises:
return await message.reply("что за хуета")
if not retur:
return
try:
x = msg_text.index('☣') + 4
count = msg_text[x:].split(' ', maxsplit=1)[0]
#if count == "1":
# return await message.reply("ок")
x = msg_text.index('user?id=') + 8
user = '@' + msg_text[x:].split('"', maxsplit=1)[0]
ept = f"<s>+{infList[user][0]}</s> " if user in infList else ""
infList[user] = [str(count), vremya]
self.db.set("NumMod", "infList", infList)
await message.reply(self.strings("auto.save").format(user, ept, count))
except ValueError:
return
#await message.reply(
# self.strings("nolink")
#)
############################################################
if re.fullmatch(r"ид\s@.{,32}", text, flags=re.ASCII):
if str(sndr_id) != str(get_me.id):
return
user = 0
if re.fullmatch(r"@\D\w{3,32}", args[0], flags=re.ASCII):
user = await message.client.get_entity(args[0])
elif re.fullmatch(r"@\d{4,14}", args[0], flags=re.ASCII):
user = args[0].replace("@", "")
user = await message.client.get_entity(int(user))
if not user:
return await message.reply("ты ввел хуйню реально")
link = '<a href="t.me/{}">{}</a>'.format(user.username, user.first_name) if user.username else '<a href="tg://openmessage?user_id={}">{}</a>'.format(user.id, user.first_name)
return await message.reply(
f"<emoji document_id=5780683340810030158>✈️</emoji> {link}\n"
f"<emoji document_id=4918133202012340741>👤</emoji> <code>@{user.id}</code>"
)
if text == "ид":
if str(sndr_id).lower() != str(get_me.id).lower():
return
reply = await message.get_reply_message()
args = utils.get_args(message)
if not reply:
user = await message.client.get_entity(message.sender_id)
link = f'<a href="t.me/{user.username}">{user.first_name}</a>' if user.username else f'<a href="tg://openmessage?user_id={user.id}">{user.first_name}</a>'
return await message.reply(
f"<emoji document_id=5780683340810030158>✈️</emoji> {link}\n"
f"<emoji document_id=4918133202012340741>👤</emoji> <code>@{user.id}</code>"
)
user = await message.client.get_entity(reply.sender_id)
link = f'<a href="t.me/{user.username}">{user.first_name}</a>' if user.username else f'<a href="tg://openmessage?user_id={user.id}">{user.first_name}</a>'
return await message.reply(
f"<emoji document_id=5780683340810030158>✈️</emoji> {link}\n"
f"<emoji document_id=4918133202012340741>👤</emoji> <code>@{user.id}</code>"
)