Spaces:
Paused
Paused
teamx-cloner
commited on
Commit
Β·
c72e162
1
Parent(s):
55a07ba
Update inlinestuff.py
Browse files- assistant/inlinestuff.py +25 -6
assistant/inlinestuff.py
CHANGED
@@ -79,11 +79,7 @@ SUP_BUTTONS = [
|
|
79 |
|
80 |
PING_ALIVE = [
|
81 |
[
|
82 |
-
Button.inline("
|
83 |
-
Button.inline("ALIVE", data="alive"),
|
84 |
-
],
|
85 |
-
[
|
86 |
-
Button.inline("CLOSE", data="close"),
|
87 |
],
|
88 |
]
|
89 |
|
@@ -103,7 +99,30 @@ apis = [
|
|
103 |
@in_pattern(owner=False, func=lambda x: not x.text)
|
104 |
async def help(e):
|
105 |
TLINK = inline_pic() or "https://telegra.ph/file/cad7038fe82e47f79c609.jpg"
|
106 |
-
MSG = "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
WEB0 = wb(
|
108 |
"https://telegra.ph/file/8d7b534e34e13316a7dd2.jpg", 0, "image/jpg", []
|
109 |
)
|
|
|
79 |
|
80 |
PING_ALIVE = [
|
81 |
[
|
82 |
+
Button.inline("π Main menu π ", data="open"),
|
|
|
|
|
|
|
|
|
83 |
],
|
84 |
]
|
85 |
|
|
|
99 |
@in_pattern(owner=False, func=lambda x: not x.text)
|
100 |
async def help(e):
|
101 |
TLINK = inline_pic() or "https://telegra.ph/file/cad7038fe82e47f79c609.jpg"
|
102 |
+
MSG = """
|
103 |
+
xteam-urbot is a versatile and feature-rich Telegram userbot built using the Telethon library in Python. Think of it as a customizable bot that runs on your Telegram account, allowing you to automate tasks, manage your groups more effectively, and add a variety of fun and useful features to your Telegram experience.
|
104 |
+
|
105 |
+
xteam-urbot interesting:
|
106 |
+
* Extensive Functionality: xteam-urbot boasts a wide array of built-in modules (plugins) that can perform various actions. These can include things like:
|
107 |
+
* Moderation tools: Anti-flood, ban/kick/mute users, manage messages.
|
108 |
+
* Utility functions: Searching the web, calculating, converting currencies, getting weather information.
|
109 |
+
* Media manipulation: Downloading media, converting file formats.
|
110 |
+
* Fun commands: Sending memes, playing games.
|
111 |
+
* Automation: Setting up timed messages, reacting to specific triggers.
|
112 |
+
* Customization: One of the key strengths of xteam-urbot is its modular design. You can choose which modules to enable or disable based on your needs. Furthermore, it supports adding third-party plugins and even developing your own.
|
113 |
+
* Community-Driven: xteam-urbot is actively developed by the Teamxteam-urbot on GitHub, which means it's constantly being updated with new features and improvements. There's also a community of users who share plugins and provide support.
|
114 |
+
* Self-Hosted: Unlike regular Telegram bots that run on separate servers, a userbot like xteam-urbot runs directly on your device (or a server you control) using your Telegram account. This gives you more control but also requires you to handle the setup and running of the bot.
|
115 |
+
|
116 |
+
If you're considering using xteam-urbot, here are a few things to keep in mind:
|
117 |
+
* Technical Skills: Setting up and managing a userbot like xteam-urbot typically requires some familiarity with the command line and Python.
|
118 |
+
* Telegram's Terms of Service: While userbots can be powerful, it's crucial to use them responsibly and be aware of Telegram's terms of service to avoid any potential issues with your account. Avoid using them for spamming or other abusive activities.
|
119 |
+
* Resource Usage: Running a userbot can consume resources on your device or server.
|
120 |
+
|
121 |
+
Where to find more information:
|
122 |
+
* GitHub: The main repository for xteam-urbot is on GitHub at https://github.com/xteam-cloner/xteam-urbot. You'll find the source code, installation instructions, and documentation there.
|
123 |
+
* TeamX Organization: You can explore other related projects and plugins under the Teamxteam-urbot organization on GitHub: https://github.com/Teamxteam-urbot.
|
124 |
+
In short, xteam-urbot is a powerful tool for Telegram users who want to extend the platform's functionality and automate tasks. However, it comes with a learning curve and requires responsible usage.
|
125 |
+
"""
|
126 |
WEB0 = wb(
|
127 |
"https://telegra.ph/file/8d7b534e34e13316a7dd2.jpg", 0, "image/jpg", []
|
128 |
)
|