-
Notifications
You must be signed in to change notification settings - Fork 0
/
IndividualLinks.py
76 lines (64 loc) · 3.02 KB
/
IndividualLinks.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
__version__ = (1, 0, 6)
# *
# * $$\ $$\ $$\ $$\ $$\
# * $$ | \__| $$ | $$ | $$ |
# * $$$$$$$\ $$$$$$$\ $$\ $$$$$$\ $$$$$$\$$$$\ $$$$$$\ $$$$$$$ |$$\ $$\ $$ | $$$$$$\ $$$$$$$\
# * $$ _____|$$ __$$\ $$ |\_$$ _| $$ _$$ _$$\ $$ __$$\ $$ __$$ |$$ | $$ |$$ |$$ __$$\ $$ _____|
# * \$$$$$$\ $$ | $$ |$$ | $$ | $$ / $$ / $$ |$$ / $$ |$$ / $$ |$$ | $$ |$$ |$$$$$$$$ |\$$$$$$\
# * \____$$\ $$ | $$ |$$ | $$ |$$\ $$ | $$ | $$ |$$ | $$ |$$ | $$ |$$ | $$ |$$ |$$ ____| \____$$\
# * $$$$$$$ |$$ | $$ |$$ | \$$$$ |$$ | $$ | $$ |\$$$$$$ |\$$$$$$$ |\$$$$$$ |$$ |\$$$$$$$\ $$$$$$$ |
# * \_______/ \__| \__|\__| \____/ \__| \__| \__| \______/ \_______| \______/ \__| \_______|\_______/
# *
# *
# * © Copyright 2023
# *
# * https://t.me/shitmodules
# *
# 🔒 Code is licensed under CC-BY-NC-ND 4.0 unless otherwise specified.
# 🌐 https://creativecommons.org/licenses/by-nc-nd/4.0/
# You CANNOT edit this file without direct permission from the author.
# You can redistribute this file without any changes.
# scope: hikka_only
# scope: hikka_min 1.6.2
# meta pic: https://raw.githubusercontent.com/kamolgks/assets/main/IndividualLinks.jpg
# meta banner: https://te.legra.ph/file/b15eed35d5ec0dd3a4716.jpg
# meta developer: @shitmodules
import logging
from .. import loader, utils # type: ignore
from hikkatl.types import Message # type: ignore
logger = logging.getLogger(__name__)
@loader.tds
class IndividualLinks(loader.Module):
"""> Links to individual content in telegram."""
strings = {
"name": "IndividualLinks",
"loading": "<emoji document_id=5292226786229236118>🔄</emoji> <b>Loading...</b>",
"links": (
"<emoji document_id=5273942560694347620>🥰</emoji>Press `F`"
"https://t.me/+pbJv2A-WQD0yNGMy\n"
"https://t.me/kdn4h\n"
"https://t.me/+70GsDVKwnN1mMmJi\n"
"https://t.me/antivanil\n"
"https://t.me/+FMONDOvtkTUwMGNi\n"
"https://t.me/netvoyotelo\n"
"https://t.me/Fckk_the_rules\n"
"https://t.me/porn_in_a_minute\n"
"https://t.me/+Uay7cXVOXFtHRmLj\n"
"https://t.me/TheOfficeBruh\n"
"https://t.me/ne_tvoya_suka\n"
"https://t.me/+vAqM7BVWT-VlY2Qy\n"
"https://t.me/+YzDq9RwWlCc1N2Ey\n"
"https://t.me/+RfdHbMqqeUdiNDUy\n"
"https://t.me/+EjMIiaCIDzZlMzA6\n"
"https://t.me/+DRZurxHB_EVkMjZi\n"
"https://t.me/+fKnl-36ghaI2MjRl\n"
"http://t.me/+kdnO91tZ8u0wODJi\n"
),
}
async def client_ready(self, client, db):
self._db = db
self._client = client
@loader.command()
async def indlinks(self, message: Message):
"""Just send .indlinks"""
await utils.answer(message, self.strings["links"])