forked from CyniteOfficial/Auto-Filter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-Authored-By: ᎫᎪᏟᏦ <[email protected]> Co-Authored-By: DⱥℝkͥAnͣgͫeℓ <[email protected]> Co-Authored-By: Shamil Habeeb <[email protected]> Co-Authored-By: Physic_Hybrid <[email protected]>
- Loading branch information
1 parent
bf1cda6
commit 93c9b1d
Showing
25 changed files
with
2,704 additions
and
865 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -144,3 +144,5 @@ dmypy.json | |
# Cython debug symbols | ||
cython_debug/ | ||
config.py | ||
.goutputstream-VAFWB1 | ||
result.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
class script(object): | ||
START_TXT = """𝙷𝙴𝙻𝙾 {}, | ||
𝙼𝚈 𝙽𝙰𝙼𝙴 𝙸𝚂 <a href='https://t.me/EvaMariaBot'>𝙴𝚅𝙰 𝙼𝙰𝚁𝙸𝙰</a>, 𝙸 𝙲𝙰𝙽 𝙿𝚁𝙾𝚅𝙸𝙳𝙴 𝙼𝙾𝚅𝙸𝙴𝚂, 𝙹𝚄𝚂𝚃 𝙰𝙳𝙳 𝙼𝙴 𝚃𝙾 𝚈𝙾𝚄𝚁 𝙶𝚁𝙾𝚄𝙿 𝙰𝙽𝙳 𝙴𝙽𝙹𝙾𝚈 😍""" | ||
HELP_TXT = """𝙷𝙴𝚈 {} | ||
𝙷𝙴𝚁𝙴 𝙸𝚂 𝚃𝙷𝙴 𝙷𝙴𝙻𝙿 𝙵𝙾𝚁 𝙼𝚈 𝙲𝙾𝙼𝙼𝙰𝙽𝙳𝚂.""" | ||
ABOUT_TXT = """✯ 𝙼𝚈 𝙽𝙰𝙼𝙴: 𝙴𝚟𝚊 𝙼𝚊𝚛𝚒𝚊 | ||
✯ 𝙲𝚁𝙴𝙰𝚃𝙾𝚁: 𝚃𝚎𝚊𝚖 𝙴𝚟𝚊 𝙼𝚊𝚛𝚒𝚊 | ||
✯ 𝙻𝙸𝙱𝚁𝙰𝚁𝚈: 𝙿𝚈𝚁𝙾𝙶𝚁𝙰𝙼 | ||
✯ 𝙻𝙰𝙽𝙶𝚄𝙰𝙶𝙴: 𝙿𝚈𝚃𝙷𝙾𝙽 𝟹 | ||
✯ 𝙳𝙰𝚃𝙰 𝙱𝙰𝚂𝙴: 𝙼𝙾𝙽𝙶𝙾 𝙳𝙱 | ||
✯ 𝙱𝙾𝚃 𝚂𝙴𝚁𝚅𝙴𝚁: 𝙷𝙴𝚁𝙾𝙺𝚄 | ||
✯ 𝙱𝚄𝙸𝙻𝙳 𝚂𝚃𝙰𝚃𝚄𝚂: v1.0.1 [ 𝙱𝙴𝚃𝙰 ]""" | ||
SOURCE_TXT = """<b>NOTE:</b> | ||
- Eva Maria is a open source project. | ||
- Source - https://github.com/EvamariaTG/EvaMaria | ||
<b>DEVS:</b> | ||
- <a href=https://t.me/TeamEvamaria>Team Eva Maria</a>""" | ||
MANUELFILTER_TXT = """Help: <b>Filters</b> | ||
- Filter is the feature were users can set automated replies for a particular keyword and tessa will respond whenever a keyword is found the message | ||
<b>NOTE:</b> | ||
1. eva maria should have admin privillage. | ||
2. only admins can add filters in a chat. | ||
3. alert buttons have a limit of 64 characters. | ||
<b>Commands and Usage:</b> | ||
• /filter - <code>add a filter in chat</code> | ||
• /filters - <code>list all the filters of a chat</code> | ||
• /del - <code>delete a specific filter in chat</code> | ||
• /delall - <code>delete the whole filters in a chat (chat owner only)</code>""" | ||
BUTTON_TXT = """Help: <b>Buttons</b> | ||
- Eva Maria Supports both url and alert inline buttons. | ||
<b>NOTE:</b> | ||
1. Telegram will not allows you to send buttons without any content, so content is mandatory. | ||
2. Eva Maria supports buttons with any telegram media type. | ||
3. Buttons should be properly parsed as markdown format | ||
<b>URL buttons:</b> | ||
<code>[Button Text](buttonurl:https//t.me/EvaMariaBot)</code> | ||
<b>Alert buttons:</b> | ||
<code>[Button Text](buttonalert:This is an alert message)</code>""" | ||
AUTOFILTER_TXT = """Help: <b>Auto Filter</b> | ||
<b>NOTE:</b> | ||
1. Make me the admin of your channel if it's private. | ||
2. make sure that your channel does not contains cam rip, porn and fake files. | ||
3. Forward the last message to me with quotes. | ||
I'll add all the files in that channel to my db.""" | ||
CONNECTION_TXT = """Help: <b>Connections</b> | ||
- Used to connect bot to PM for managing filters | ||
- it helps to avoid spamming in groups. | ||
<b>NOTE:</b> | ||
1. Only admins can add a connection. | ||
2. Send <code>/connect</code> for connecting me to ur PM | ||
<b>Commands and Usage:</b> | ||
• /connect - <code>connect a particular chat to your PM</code> | ||
• /disconnect - <code>disconnect from a chat</code> | ||
• /connections - <code>list all your connections</code>""" | ||
EXTRAMOD_TXT = """Help: <b>Extra Modules</b> | ||
<b>NOTE:</b> | ||
these are the extra features of tessa | ||
<b>Commands and Usage:</b> | ||
• /id - <code>get id of a specifed user.</code> | ||
• /info - <code>get information about a user.</code> | ||
• /imdb - <code>get the film information from IMDb source.</code> | ||
• /search - <code>get the film information from various sources.</code>""" | ||
ADMIN_TXT = """Help: <b>Admin mods</b> | ||
<b>NOTE:</b> | ||
This module only works for my admins | ||
<b>Commands and Usage:</b> | ||
• /logs - <code>to get the rescent errors</code> | ||
• /stats - <code>to get status of files in db.</code> | ||
• /users - <code>to get list of my users and ids.</code> | ||
• /chats - <code>to get list of the my chats and ids </code> | ||
• /index - <code>to add files from a channel</code> | ||
• /leave - <code>to leave from a chat.</code> | ||
• /disable - <code>do disable a chat.</code> | ||
• /ban - <code>to ban a user.</code> | ||
• /unban - <code>to unban a user.</code> | ||
• /channel - <code>to get list of total connected channels</code> | ||
• /broadcast - <code>to broadcast a message to all tssa users</code>""" | ||
STATUS_TXT = """★ 𝚃𝙾𝚃𝙰𝙻 𝙵𝙸𝙻𝙴𝚂: <code>{}</code> | ||
★ 𝚃𝙾𝚃𝙰𝙻 𝚄𝚂𝙴𝚁𝚂: <code>{}</code> | ||
★ 𝚃𝙾𝚃𝙰𝙻 𝙲𝙷𝙰𝚃𝚂: <code>{}</code> | ||
★ 𝚄𝚂𝙴𝙳 𝚂𝚃𝙾𝚁𝙰𝙶𝙴: <code>{}</code> 𝙼𝚒𝙱 | ||
★ 𝙵𝚁𝙴𝙴 𝚂𝚃𝙾𝚁𝙰𝙶𝙴: <code>{}</code> 𝙼𝚒𝙱""" | ||
LOG_TEXT_G = """#NewGroup | ||
Group = {}(<code>{}</code>) | ||
Total Members = <code>{}</code> | ||
Added By - {} | ||
""" | ||
LOG_TEXT_P = """#NewUser | ||
ID - <code>{}</code> | ||
Name - {} | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.