My Bots | 我的机器人
129 subscribers
1 photo
11 links
Owner @Hexeg
Download Telegram
Telegram Username Claim Bot — Source Code for Sale

中文说明

简介
- 用途: 面向 Telegram 用户名占用/抢注的多账号系统,支持管理员与订阅用户两套入口。
- 核心机制: 绑定多个 Telegram 账号,基于词表自动检测用户名可用性并创建频道占用。

功能亮点(要点列表)
- 多账号会话管理: 管理员 /add 或用户 /add_account 交互式绑定手机号、OTP、2FA,会话校验并自动启动。
- 用户名检测与占用: t.me 状态检测 + fragment.com 列表检查 + WordNet 词义过滤,支持 /claim、/rclaim、/make。
- 词表与文件管理: 内置 hybrid/words 词库,用户可上传 .txt 词表并按文件选择参与占用。
- 订阅与余额体系: 套餐/额度/余额扣款内置,支持管理员配置套餐、分配订阅、调整余额与查看用户概览。
- 频道与内容管理: 管理端可浏览频道、发帖/改帖、加/删管理员、转让或删除频道;用户可释放已占用用户名。
- 代理池与后台任务: 动态代理池 + proxy.txt 静态代理,后台线程持续刷新,代理用于会话创建与可用性检测。
- 日志与风控: LOG_ID 记录错误与用户事件,SpamBot 检测与拉黑列表,支持从主控回复转发私信。
- 多语言基础: 管理端支持语言切换(英/阿/中/韩/俄),用户界面使用统一翻译框架。

使用/工作流程(分步骤)
用户流程:
1. /start 打开用户菜单并查看套餐。
2. 通过 /subscribe 购买套餐(使用账户余额)。
3. /add_account 绑定 Telegram 账号(手机号、验证码、2FA)。
4. 上传 .txt 词表或使用 /files 管理已有词表。
5. /claim 或 /rclaim 选择词表并启动占用流程。
6. /claimed 查看已占用用户名,/release 释放频道,/set_message 与 /set_description 设置频道内容。
管理员流程:
1. /start 进入管理面板并选择语言。
2. /add 添加或生成会话,启动用户客户端并校验。
3. /claim、/rclaim 或 /make 发起批量/区间/指定占用。
4. 频道管理菜单中执行发帖、改帖、加/删管理员、转让或删除频道。
5. /plan_add、/plan_delete、/balance_add、/balance_view、/subscription_assign 管理订阅体系。
6. /join、/leave、/startbot、/makedb、/cleardb、/update、/restart 执行运维操作。

优势与收益(要点列表)
- 多账号并发占用流程,可扩展到订阅用户体系。
- 词表与订阅额度绑定,便于商业化与成本控制。
- 代理池与错误日志完善,便于稳定运行与排查问题。
- 频道与消息管理集成,减少手动操作。

部署与维护(仅限仓库确认存在的内容)
- 入口: `python3 -m hybrid`,Pyrogram + Pyromod 架构。
- 容器化: 提供 `Dockerfile` 与 `start.sh`(拉取代码、按需安装依赖并启动)。
- 配置: 通过环境变量或 `config.py` 配置 `BOT_TOKEN`、`API_ID`、`API_HASH`、`OWNER`、`ADMINS`、`MONGO_URL`、`DATABASE_URL`、`LOG_ID`、代理相关参数等。
- 依赖: MongoDB 用于会话/订阅/文件/频道数据,PostgreSQL 用于用户名去重表;启动时下载 NLTK 词库。

交付内容(你将获得什么)
- 完整源代码(含管理端与用户端流程)。
- `Dockerfile`、`start.sh`、`requirements.txt` 与配置文件。
- 内置词表数据(`hybrid/words`)与测试脚本(`tests`)。

@hexeg
Telegram Username Claim Bot — Source Code for Sale

Overview
- Purpose: A multi-account Telegram username claiming system with both admin and subscriber workflows.
- Core flow: Link multiple Telegram accounts, scan word lists for availability, and claim by creating channels.

Key Features (bullets)
- Multi-account session management: Admin /add or user /add_account with phone, OTP, and 2FA verification.
- Availability + claiming engine: t.me validation, fragment.com listing check, WordNet filtering; supports /claim, /rclaim, /make.
- Word list management: Built-in hybrid/words library plus user-uploaded .txt lists per claim run.
- Subscription + balance system: Plans, usage limits, and internal balance billing with admin controls for plans and credits.
- Channel operations: Admin menu to post/edit content, add/remove admins, transfer ownership, or delete channels; users can release claimed usernames.
- Proxy pool + background refresh: Dynamic proxy pool and proxy.txt static list for session creation and availability checks.
- Logging + controls: LOG_ID event/error logs, SpamBot checks, spam list, and private-message relay to owner.
- Language foundation: Admin language switcher (EN/AR/ZH/KO/RU) with shared translation framework.

Workflows (step-by-step)
User flow:
1. /start opens the user menu and plan overview.
2. /subscribe purchases a plan using account balance.
3. /add_account links a Telegram account via phone, OTP, and 2FA.
4. Upload a .txt word list or manage lists via /files.
5. Run /claim or /rclaim and pick a list to start claiming.
6. /claimed lists results; /release removes channels; /set_message and /set_description customize channel content.
Admin flow:
1. /start opens the admin dashboard and language picker.
2. /add imports or generates sessions and starts user clients.
3. /claim, /rclaim, or /make to run batch, range, or single claims.
4. Use channel management menus to post/edit, add/remove admins, transfer, or delete.
5. /plan_add, /plan_delete, /balance_add, /balance_view, /subscription_assign manage subscriptions.
6. /join, /leave, /startbot, /makedb, /cleardb, /update, /restart handle operations.

Benefits (bullets)
- Scales claims across multiple linked accounts with structured workflows.
- Subscription limits and word quotas enable clear monetization control.
- Proxy pool and logging help stabilize operations and troubleshoot quickly.
- Built-in channel management reduces manual overhead.

Deployment & Maintenance (confirmed by repo)
- Entry point: python3 -m hybrid on Pyrogram + Pyromod.
- Container support: Dockerfile and start.sh (pulls code, installs requirements, runs the bot).
- Configuration: BOT_TOKEN, API_ID, API_HASH, OWNER, ADMINS, MONGO_URL, DATABASE_URL, LOG_ID, proxy settings, etc.
- Data stores: MongoDB for sessions/plans/files/channels; PostgreSQL for username de-duplication; NLTK corpora downloaded on startup.

Deliverables
- Full source code with admin + user portal flows.
- Dockerfile, start.sh, requirements.txt, and configuration file.
- Built-in word lists (hybrid/words) and test artifacts (tests).

Contact @hexeg
This media is not supported in your browser
VIEW IN TELEGRAM
ChatWatcher Telegram Bot Source Code for Sale / ChatWatcher 机器人源码出售

简介
- 这是一个基于 Pyrogram(pyrotgfork)的多账号 Telegram 自动化机器人,配套 FastAPI WebApp 控制台。
- 用途:在多个账号的群组/频道中监控关键词并自动回复,同时集中管理账号、群组、广播与订阅。

功能亮点
- 多账号会话管理:支持 Pyrogram/Telethon session 导入、字符串/文件/手机号登录,账号资料/用户名/头像/2FA 管理,启动/停止。
- 群组管理:通过邀请链接/用户名批量加入并入库,支持同步已有群组与手动增删。
- Watcher 关键词自动回复:触发词 + 回复内容,支持媒体/相册回复与冷却控制,按群组启用/停用监控。
- 广播与计划任务:复制/转发模式群发,支持保存帖子、定时循环、按分类或未分类投放。
- 分类与内容库:聊天与保存帖子分类、默认分类、批量分配。
- 订阅/试用/余额体系:套餐限制(账号/群组/分类/过滤器数量),试用激活与到期清理。
- USDT(TRON) 充值与校验:生成唯一金额发票,交易哈希验证后自动入账。
- 推荐返佣与提现申请:推荐链接、返佣入账、提现申请记录。
- 代理支持:全局代理池 + 个人代理库,登录与运行可切换直连/代理。
- WebApp 控制台:Telegram WebApp 登录,覆盖账户、群组、Watcher、分类、广播、订阅、支付、推荐等。
- 管理员功能:日志/计划/试用时长管理、用户余额/订阅/管理员管理、广播任务停止与数据库维护。

使用/工作流程
1. 用户:/start 选择语言并进入主菜单。
2. 用户:开通试用或 USDT 充值后购买套餐。
3. 用户:添加账号(session 字符串/文件/手机号),按需选择代理。
4. 用户:通过 /link 或 WebApp 导入群组,或用 /syncgroups 同步已有群组。
5. 用户:创建 Watcher 自动回复并启用目标群组监控。
6. 用户:保存帖子并按分类进行广播/定时广播。
7. 管理员:管理套餐参数、试用时长与管理员列表。
8. 管理员:审核订阅/余额、查看日志、停止广播任务或执行维护操作。

优势与收益
- 多账号并行 + 集中控制,提升群组运营效率。
- 内置订阅/试用/推荐闭环,便于商业化。
- Bot + WebApp 双入口,日常操作与批量管理更高效。
- 广播任务持久化并支持重启恢复。
- 后台健康检查(SpamBot 检测、账号状态/连接守护、到期清理)降低维护成本。

部署与维护
- Python 3.11;依赖见 `requirements.txt`(pyrotgfork、FastAPI、Motor、uvicorn 等)。
- 启动方式:`python3 -m hybrid` 或 Dockerfile/`start.sh`。
- 关键环境变量:`BOT_TOKEN`、`API_ID`、`API_HASH`、`DATABASE_URL`、`DATABASE_NAME`、`POST_CHANNEL`、`LOG_ID`、`USDT_ADDRESS`、`WEBAPP_*`。
- 可选代理:`proxies.txt` 全局代理池 + 个人代理库。
- WebApp 在 WEBAPP_ENABLED=true 时随 Bot 启动。

交付内容
- 完整源代码(Bot + 插件 + WebApp + 前端静态资源)。
- 配置与运行脚本(`config.py`、`requirements.txt`、`Dockerfile`、`start.sh`)。
- MongoDB 数据结构与初始化逻辑(内置于代码)。
- 支持条款:仓库内未明示(可另行约定)。

@hexeg
ChatWatcher Telegram Bot Source Code for Sale / ChatWatcher 机器人源码出售

Overview
- A multi-account Telegram automation bot built on Pyrogram (pyrotgfork) with a FastAPI WebApp control panel.
- Purpose: monitor keywords and auto-reply in groups/channels while centrally managing accounts, groups, broadcasts, and subscriptions.

Key Features
- Multi-account session management: Pyrogram/Telethon session import, string/file/phone login, profile/username/avatar/2FA management, start/stop.
- Group management: join/import via invite links/usernames, sync existing groups, manual add/remove.
- Watcher keyword auto-replies: trigger + reply with media/album support, cooldowns, per-chat monitoring toggle.
- Broadcast & scheduling: copy/forward broadcasts from saved posts, timed loops, category or uncategorized targeting.
- Categories & content library: categorize chats and saved posts, default category, bulk assignment.
- Subscription/trial/balance system: plan limits (accounts/groups/categories/filter count), trial activation and expiry cleanup.
- USDT (TRON) top-ups with verification: unique invoices + tx hash validation.
- Referral rewards & withdrawal requests.
- Proxy support: global proxy pool + per-user proxies; direct/proxy connection modes.
- WebApp dashboard: Telegram WebApp auth with accounts, groups, watcher, categories, broadcasts, subscriptions, payments, referral.
- Admin tools: logs, plan/trial duration management, user balance/subscription/admin controls, broadcast stop + DB maintenance.

Workflows
1. User: /start → choose language → open the main menu.
2. User: activate the trial or top up via USDT and purchase a plan.
3. User: add accounts (session string/file/phone) and choose proxy usage.
4. User: import groups via /link or WebApp, or /syncgroups to scan existing groups.
5. User: create Watcher auto-replies and enable monitoring for target chats.
6. User: save posts and run broadcasts/scheduled broadcasts by category.
7. Admin: manage plan parameters, trial duration, and admin list.
8. Admin: review subscribers/balances, view logs, stop broadcasts, or run maintenance tasks.

Benefits
- Scales across many accounts and chats with centralized control.
- Built-in billing, trial, and referral loop for monetization.
- Dual control surfaces (bot + WebApp) for operators and admins.
- Persistent broadcast jobs with auto-resume after restart.
- Background health checks (SpamBot checks, account status/connection guards, expiry cleanup) reduce ops risk.

Deployment & Maintenance
- Python 3.11; dependencies in requirements.txt (pyrotgfork, FastAPI, Motor, uvicorn).
- Run via python3 -m hybrid or the Dockerfile/start.sh.
- Key environment variables: BOT_TOKEN, API_ID, API_HASH, DATABASE_URL, DATABASE_NAME, POST_CHANNEL, LOG_ID, USDT_ADDRESS, WEBAPP_*.
- Optional proxies: global proxies.txt pool + per-user proxy vault.
- WebApp starts with the bot when WEBAPP_ENABLED=true.

Deliverables
- Full source code (bot + plugins + WebApp + frontend assets).
- Configuration & run scripts (config.py, requirements.txt, Dockerfile, start.sh).
- MongoDB schema/init logic embedded in the codebase.
- Support terms: not specified in the repository (to be agreed).

Contact @hexeg
This media is not supported in your browser
VIEW IN TELEGRAM
RentalBot Telegram +888 Number Rental Bot Source Code for Sale

中文
简介
- 基于 Pyrogram 的 Telegram 机器人 + FastAPI WebApp,用于管理与出租 Fragment 的 +888 号码
- 提供租用、续租、OTP 获取、余额与支付、后台管理等完整流程

功能亮点
- Fragment 号码池抓取与管理(从 fragment.com/my/numbers 读取 +888 号码)
- 号码租用与续租(30/60/90 天档位,租用需确认规则)
- OTP 获取与号码状态展示(支持调试模式返回测试码)
- 多语言界面(英语/俄语/韩语/中文)与 FAQ/规则维护
- 支付/充值:CryptoBot (@send) 发票 + USDT TRC-20 交易校验(TronScan API)
- WebApp 控制台:号码、租用、个人资料、支持面板与管理员概览
- 自动化后台任务:到期提醒、过期清理、7 天删除流程、受限号码检测
- 管理员工具:用户与余额管理、分配/取消/延长租用、价格与可用性控制、导出 CSV、广播、交易查询、系统与日志工具

使用/工作流程
1. 用户 /start 进入机器人并选择语言
2. 浏览可租号码,选择租期并确认规则
3. 余额不足时先充值(CryptoBot 或 USDT TRC-20),再完成租用
4. 在“我的租用”中查看租期、续租、获取 OTP
5. 到期前自动提醒,过期后自动清理并通知
6. 管理员通过后台面板或命令进行用户、号码与交易管理

优势与收益
- 自动化处理租用生命周期,减少人工干预
- 余额系统与两种支付方式,覆盖常见加款场景
- WebApp + 机器人双入口,体验更完整
- 可配置价格、规则与多语言,适合面向国际用户

部署与维护
- 运行入口:`python -m hybrid`,也可使用 Dockerfilestart.sh
- 需要配置环境变量:BOT_TOKEN、API_ID、API_HASH、OWNER_ID、DATABASE_URL、FRAGMENT_API_HASH、USDT_ADDRESS 等
- 需要提供 Fragment Cookies 文件 frag.json 以读取号码与 OTP
- 数据存储使用 MongoDB(Motor 异步客户端)

交付内容
- 完整源代码(Telegram Bot + FastAPI WebApp + 前端资源)
- 配置与语言文件(`config.py`, lang.json, `requirements.txt`)
- 部署脚本(`Dockerfile`, `start.sh`)
- 相关工具脚本(`test/` 目录)

@hexeg
RentalBot Telegram +888 Number Rental Bot Source Code for Sale

Overview
- Pyrogram-based Telegram bot + FastAPI WebApp for managing and renting Fragment +888 numbers
- Covers full flow: rental, renewal, OTP retrieval, balance & payments, and admin operations

Key Features
- Fragment number pool ingestion and management (from fragment.com/my/numbers)
- Rental and renewal tiers (30/60/90 days) with rules confirmation
- OTP retrieval and number status handling (debug mode supported)
- Multi-language UI (EN/RU/KO/ZH) with FAQ and rules management
- Payments & top-ups: CryptoBot (@send) invoices + USDT TRC-20 verification (TronScan API)
- WebApp control center: numbers, rentals, profile, support, and admin snapshot
- Background automation: expiry reminders, cleanup, 7-day deletion flow, restricted number checks
- Admin toolkit: users/balances, assign/cancel/extend rentals, pricing & availability control, CSV export, broadcast, transaction checks, system/log tools

Workflows
1. User runs /start and selects a language
2. Browse available numbers, pick duration, accept rules
3. Top up if needed (CryptoBot or USDT TRC-20), then rent
4. Manage rentals: view time left, renew, and fetch OTP
5. Receive expiry reminders and automatic cleanup notifications
6. Admins manage users, rentals, numbers, and payments via panel/commands

Benefits
- Automated rental lifecycle reduces manual workload
- Balance system with two payment methods for flexible funding
- Dual-entry experience via bot and WebApp
- Configurable pricing, rules, and multi-language support for international markets

Deployment & Maintenance
- Entrypoint: python -m hybrid, with Dockerfile and start.sh included
- Env vars required: BOT_TOKEN, API_ID, API_HASH, OWNER_ID, DATABASE_URL, FRAGMENT_API_HASH, USDT_ADDRESS, etc.
- Requires Fragment cookies file frag.json for number/OTP access
- MongoDB-backed storage using Motor async client

Deliverables
- Full source code (Telegram bot + FastAPI WebApp + frontend assets)
- Config and language files (config.py, lang.json, requirements.txt)
- Deployment scripts (Dockerfile, start.sh)
- Utility scripts in test/

Contact @hexeg
This media is not supported in your browser
VIEW IN TELEGRAM
ConversBot — 匿名双人对话 Telegram 机器人源码出售 / Anonymous Telegram Conversation Bot Source Code

简介
这是一个基于 Pyrogram (pyrotgfork) 的匿名双人对话 Telegram 机器人。管理员创建对话并生成邀请链接,机器人在两位用户之间转发消息,并将内容记录到指定群组话题用于管理与审计。

功能亮点
- 管理员面板:创建对话、分页管理对话列表
- 邀请链接加入:`/start join_<token>` 进入指定对话
- 对话控制:暂停/恢复/结束对话,支持重新生成邀请
- 内容过滤:用户名、链接、媒体发送的开关控制
- 用户侧入口:查看可用对话、开始/停止对话、切换语言
- 监控与审计:消息记录到 `TOPIC_ID` 话题;管理员可在话题回复用户、用 /delete 双向删除消息
- 多语言:中英文语言选择与提示
- 运维命令:管理员 /update 触发 `git pull`、可选依赖更新并重启
- MongoDB 持久化:对话、用户状态、消息日志存储

使用/工作流程
用户流程:
1. 发送 /start 并选择语言
2. 选择可用对话列表,或通过邀请链接进入
3. 与对话伙伴匿名聊天,系统自动转发并记录
4. 发送 /stop 或点击停止按钮结束对话

管理员流程:
1. 发送 /start 进入管理面板
2. 创建对话:填写名称与两位用户 ID/用户名,自动创建话题并生成邀请链接
3. 管理对话:暂停/恢复/结束、切换过滤规则
4. 在监控话题中回复可通知双方,`/delete` 可删除双方消息

优势与收益
- 受控的匿名双人沟通场景,适合客服协调、撮合、咨询等
- 管理员可审计、可干预,降低风险
- 对话记录与用户状态持久化,便于追踪与运营
- 内置中英文界面,面向双语用户更友好

部署与维护
- 环境变量配置:`BOT_TOKEN`、`API_ID`、`API_HASH`、`OWNER_ID`、`DATABASE_URL/DB_URI`、`DATABASE_NAME/DB_NAME`、`TOPIC_ID`、`ADMINS`
- 提供 .env.sample`、`requirements.txt`、`Dockerfilestart.sh
- 启动入口为 python -m hybrid

交付内容
- 完整源代码(Pyrogram/pyrotgfork 版本)
- 配置样例与依赖清单
- MongoDB 存储与消息记录逻辑

@hexeg
Anonymous Telegram Conversation Bot Source Code

Overview
This repository is a Pyrogram (pyrotgfork) based anonymous two-person conversation bot for Telegram. Admins create conversations and invite links; the bot relays messages between two users and logs them to a designated forum topic for moderation.

Key Features
- Admin panel: create conversations and manage them with pagination
- Invite join flow: /start join_<token> to enter a specific conversation
- Conversation controls: pause/resume/end, regenerate invite link
- Content filters: toggle username/link/media blocking
- User entry: list available conversations, start/stop, change language
- Monitoring & audit: logs to TOPIC_ID topic; admins can reply from the topic and use /delete to remove both sides
- Bilingual UI: English and Chinese language prompts
- Ops command: admin /update runs git pull, optional dependency install, then restart
- MongoDB persistence for conversations, user state, and message logs

Workflows
User flow:
1. Send /start and choose a language
2. Select an available conversation or join via invite link
3. Chat anonymously; messages are forwarded and logged
4. Send /stop or tap Stop to leave the conversation

Admin flow:
1. Send /start to open the admin panel
2. Create a conversation by entering a name and two user IDs/usernames; a forum topic and invite link are generated
3. Manage conversations: pause/resume/end and toggle filters
4. Reply from the monitoring topic to notify users; use /delete to remove both sides

Benefits
- Controlled anonymous chat for support, matchmaking, or consultation scenarios
- Admin oversight and intervention tools reduce risk
- Persistent logs and user state tracking for operations
- Built-in bilingual interface for wider coverage

Deployment & Maintenance
- Env configuration: BOT_TOKEN, API_ID, API_HASH, OWNER_ID, DATABASE_URL/DB_URI, DATABASE_NAME/DB_NAME, TOPIC_ID, ADMINS
- Includes .env.sample, requirements.txt, Dockerfile, and start.sh
- Entrypoint: python -m hybrid

Deliverables
- Full source code (Pyrogram/pyrotgfork based)
- Config sample and dependency list
- MongoDB storage and message logging logic

Contact @hexeg
This media is not supported in your browser
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
TELEGRAM BOT SOURCE CODE BUNDLE – FOR SALE

Professional Telegram automation bots | Chinese & English support

==================================================
中文说明(Chinese)
==================================================

📦 项目概览
本源码合集包含多个已经完成、可直接部署和商业化的 Telegram 机器人项目,适用于广告自动化、用户增长、监控、租赁、匿名聊天等多种业务场景。

---

🤖 机器人列表(逐条说明)

1. AutoAds Telegram 广告机器人
用途: Telegram 广告与社群运营自动化
- 多账号广告群发
- 群组 / 频道管理
- 订阅与计费系统
- 代理池支持
- WebApp 管理后台

适合人群: 广告商、流量团队、TG 营销工作室

---

2. FragAlertBot
用途: Fragment / TON 市场价格提醒
- TON 价格监控
- +888 匿名号码底价提醒
- 私聊查询
- 群组 / 频道推送
- 管理员控制与广告位

---

3. Telegram Invite Dashboard
用途: Telegram 拉新与成员增长系统
- FastAPI + Pyrogram 架构
- 手机号登录
- 多账号自动邀请
- 欢迎消息模板
- FloodWait 限流处理
- 可视化 Web 控制台

---

4. Telegram Username Claim Bot
用途: Telegram 用户名抢注与占用
- 多账号并行检测
- 用户名词表扫描
- 创建频道占用用户名
- 订阅 / 余额系统
- 代理池管理

---

5. ChatWatcher
用途: 关键词监控与自动回复
- 多账号监听
- 群组 / 频道关键词监控
- 自动回复
- 定时广播
- 试用 / 订阅 / 充值系统
- WebApp 管理后台

---

6. RentalBot(+888 号码租赁机器人)
用途: Fragment +888 匿名号码租赁
- 号码租用 / 续租
- OTP 获取
- 余额管理
- 加密货币支付
- 后台自动任务
- Bot + WebApp 双端架构

---

7. ConversBot(匿名对话机器人)
用途: 匿名双人聊天
- 管理员创建对话
- 邀请链接生成
- 双向匿名消息转发
- 消息记录至论坛话题
- 支持管理与审计

---

📦 交付内容
- 完整源码(Bot / WebApp / 后端 / 前端)
- 配置文件与部署结构
- 可二次开发、品牌化、商业化

---

📞 联系方式
- @hexeg

==================================================
ENGLISH DESCRIPTION
==================================================

📦 Overview
This bundle contains multiple production-ready Telegram bots designed for automation, growth, monitoring, rentals, and anonymous communication. All projects are suitable for direct deployment and commercial use.

---

🤖 Included Bots (Point-by-Point)

1. AutoAds Telegram Ads Bot
Purpose: Telegram advertising & community automation
- Multi-account broadcasting
- Group & channel management
- Subscription & billing system
- Proxy support
- WebApp admin dashboard

Best for: Advertisers, traffic teams, Telegram marketers

---

2. FragAlertBot
Purpose: Fragment / TON market alerts
- TON price tracking
- +888 anonymous number floor alerts
- Private chat queries
- Group / channel notifications
- Admin & ad placement support

---

3. Telegram Invite Dashboard
Purpose: Telegram growth automation
- FastAPI + Pyrogram architecture
- Phone login
- Multi-account auto inviting
- Welcome templates
- FloodWait handling
- Visual web dashboard

---

4. Telegram Username Claim Bot
Purpose: Telegram username claiming system
- Multi-account scanning
- Wordlist availability checks
- Channel creation to occupy usernames
- Subscription & balance system
- Proxy pool support

---

5. ChatWatcher
Purpose: Keyword monitoring & auto-reply
- Multi-account monitoring
- Group & channel keyword tracking
- Auto replies
- Scheduled broadcasts
- Trial / subscription / payments
- WebApp control panel

---

6. RentalBot (+888 Number Rental Bot)
Purpose: Fragment +888 number rental automation
- Rent & renew numbers
- OTP retrieval
- Balance management
- Crypto payments
- Background jobs
- Bot + WebApp architecture

---

7. ConversBot (Anonymous Chat Bot)
Purpose: Anonymous 1-to-1 conversations
- Admin-created conversations
- Invite link system
- Anonymous message relay
- Message logging for moderation
- Admin control support

---

📦 Deliverables
- Full source code (Bot / WebApp / Backend / Frontend)
- Config & deployment structure
- Ready for rebranding and monetization

---

📞 Contact
- @hexeg
My Bots | 我的机器人 pinned «TELEGRAM BOT SOURCE CODE BUNDLE – FOR SALE Professional Telegram automation bots | Chinese & English support ================================================== 中文说明(Chinese) ================================================== 📦 项目概览 本源码合集包含多个已经完成、可直接部署和商业化的…»
🏷️ This Username Available on @Tags!

Tag: @relistens
Price: 150.00 TON

Tap below to buy:
告别手动操作的时代!MassAdveSW 支持多账号同时管理、全自动加群与广告推送,内置 AI 验证码秒破引擎,无论是图片验证、GIF 闪烁码还是未知验证机制,统统一键攻克。
内置智能代理轮换系统,代理失效自动切换,账号永不掉线;全程无人值守,任务自动完成,让您的流量增长从不停歇。
无论您选择源码授权还是按月订阅激活码,一套系统即可覆盖大规模推广所需的全部场景——群发、拉人、评论、加群、换IP,一站搞定。
立即入手,抢占流量先机!名额有限,先到先得。 💎

免费试用 🎁

详情请见: docs.massads.xyz

联系 @hexeg