363
Subscribers
No data24 hours
+57 days
+3530 days
Data loading in progress...
Similar Channels
Tags Cloud
No data
Any problems? Please refresh the page or contact our support manager.
Incoming and Outgoing Mentions
---
---
---
---
---
---
Attracting Subscribers
September '24
September '24
+25
in 0 channels
August '24
+79
in 0 channels
Get PRO
July '24
+155
in 0 channels
Get PRO
June '24
+100
in 0 channels
Get PRO
May '24
+97
in 1 channels
Get PRO
April '24
+84
in 0 channels
Get PRO
March '24
+107
in 0 channels
Get PRO
February '24
+91
in 0 channels
Get PRO
January '24
+201
in 1 channels
Get PRO
December '23
+194
in 0 channels
| Date | Subscriber Growth | Mentions | Channels | |
| 15 September | +3 | |||
| 14 September | +4 | |||
| 13 September | +2 | |||
| 12 September | 0 | |||
| 11 September | 0 | |||
| 10 September | +2 | |||
| 09 September | +1 | |||
| 08 September | +1 | |||
| 07 September | +1 | |||
| 06 September | +2 | |||
| 05 September | +1 | |||
| 04 September | +1 | |||
| 03 September | +2 | |||
| 02 September | +5 | |||
| 01 September | 0 |
Channel Posts
📌 TBC Broadcast Code For Any Type Message with Caption
🚀 Command 1:
/broadcast
🛠 Code:
admin = "YourTelegramID"
if admin != str(u):
raise ReturnCommand()
if options == None:
bot.replyText(u, "<b>🎙️ Send Any Message To Broadcast in HTML\n\nTo Cancel: /cancel</>")
Bot.handleNextCommand("/broadcast", options=True)
raise ReturnCommand()
else:
if message.text == "/cancel":
bot.sendMessage("<b>❌ Cancelled</>")
raise ReturnCommand()
def broadcast(method, txt, fileId):
typ = method.lower()
if method == "Message":
code = f"""bot.sendMessage(chat_id=u, text='''{txt}''', parse_mode="html")"""
elif str(txt) == "None":
code = f"""bot.send{method}(chat_id=u, {typ}="{fileId}")"""
else:
code = f"""bot.send{method}(chat_id=u, {typ}="{fileId}", caption='''{txt}''', parse_mode="html")"""
return code
txt = str(message.caption)
if txt == "None":
txt = message.text
if message.photo:
code = broadcast("Photo", txt, message.photo[-1].file_id)
elif message.text:
code = broadcast("Message", txt, None)
elif message.video:
code = broadcast("Video", txt, message.video.file_id)
elif message.audio:
code = broadcast("Audio", txt, message.audio.file_id)
elif message.document:
code = broadcast("Document", txt, message.document.file_id)
elif message.sticker:
code = broadcast("Sticker", txt, message.sticker.file_id)
elif message.animation:
code = broadcast("Animation", txt, message.animation.file_id)
else:
bot.sendMessage("<b>❌ Wrong File Format!</>")
raise ReturnCommand()
url = libs.webhook.getUrlFor("/broadResult", u)
task = Bot.broadcast(code=code, callback_url=url)
Bot.saveData(task, None)
bot.sendMessage("<b>🔁 Broadcast Processing...</b>")
🚀 Command 2: /broadResult
🛠 Code:
try:
get = options.json
total = get.total
success = get.total_success
fail = get.total_errors
txt = f"""<b>
🎙️ Broadcast Done
👥 Total: {total}
✅ Success: {success}
❌ Failed: {fail}
</b>"""
bot.sendMessage(txt)
except:
bot.sendMessage("<b>❌ Broadcast Data Process Failed</b>")
⚠️ Replace YourTelegramId With Your Telegram ID
🚨 Must Give Credit If You Are Posting On Your Channel
┌©️ Credit: @HazexTBC
├👨🏻💻 Developer: @MrHazex
└‼️ Error & Support: @HxChat| 2 | Want TBC Broadcast Code That Can Broadcast Any Type Message with Caption and without API? | 432 |
| 3 | ✅ Theme Increased To 10 | 500 |
| 4 | 📔 API Name: Logo Maker
🔗 API URL: https://hazexweb.000webhostapp.com/api/logo
✨ Action: Generate Logo With Themes and Without Watermark
🔻 Request Method: No Request (Direct Image)
🔮 Parameters:
├ text: Logo Text *
└ theme: 1 to 10 *
├ 1 = Shadow
├ 2 = Bat Man
├ 3 = Bear
├ 4 = Black Pink
├ 5 = Break Wall
├ 6 = Light Glow Sliced Text
├ 7 = Firework Sparkle
├ 8 = Neon Text Effect
├ 9 = Holographic 3D Text
└ 10 = Advance Glow Text
💠 Example: https://hazexweb.000webhostapp.com/api/logo?theme=1&text=Text
©️ Copy Claims By: @HazexAPI
⚠️ This API is Only For Demo Purpose | 544 |
| 5 | sticker.webp | 455 |
| 6 |
📌 Get Free API's | @HazexTBC
➖➖➖➖➖➖➖➖➖➖➖➖➖➖
🔻 API: TVMaze
✨ API Info: TV Show Data
🔗 URL: http://www.tvmaze.com/api
🔮 Category: Video
🧿 Total Click: 93 | 488 |
| 7 | 📌 How To Use sendMediaGroup in TBC
🛠 TPY Code:
media_group = [
InputMediaPhoto(media='image_url', caption='Caption 1'), InputMediaPhoto(media='image_url', caption='Caption 2')
]
bot.sendMediaGroup(chat_id=u, media=media_group)
┌©️ Credit: @HazexTBC
├👨🏻💻 Developer: @MrHazex
└‼️ Error & Support: @HxChat | 411 |
| 8 | 🤖 Telegram Image Search Bot
👉 Bot: @HazexImg_Bot
📌 About Bot -
Bot Can Download HD Images, with Advance Setting Options
✨ Features -
- Unlimited Search
- Fast Service
- HD Images
- One Click Download
❓ Use Keywords in Some Word and it will Not Generate Image | 406 |
| 9 | 🌱 Happy Tulsi Pujan Diwas | 303 |
| 10 | 📌 AI Girlfriend TPY Code
🚀 Command: *
🛠 TPY Code:
bot.sendChatAction(chat_id=message.chat.id, action="typing")
ms = message.text
url = f"https://chatgpt.apinepdev.workers.dev/?question={ms}&state=girlfriend"
try:
get = bunchify(HTTP.get(url).json())
bot.replyText(chat_id=u, text=get["answer"])
except:
bot.replyText(chat_id=u, reply_to_message_id=message.message_id, text="<b>❌ Error Occurred!</b>")
⚠️ Must Give Credit If You Are Posting On Your Channel
┌©️ Credit: @HazexTBC
├🎖 API By: @Prime_NepCoder
├👨🏻💻 Developer: @MrHazex
└‼️ Error & Support: @HxChat | 292 |
| 11 | 🎹 Best Music Downloader Bot with Quality Options
🎵 Bot - @xyzMusic_Bot | 412 |
| 12 | 🛑 Break from Telegram for 1 Month
🔜 New Codes Coming Soon | 617 |
| 13 | 🔻 Click on Button To Generate Random Anime Pics With Your Name | 659 |
| 14 | 🚀 15 Free Hosting Providers
1. 000webhost.com
2. Freehostia.com
3. Jimdo.com
4. FreeHosting.com
5. xtreemhost.com
6. Zymic.com
7. Byethost.com
8. 110MB.com
9. AwardSpace.com
10. 1FreeHosting.com
11. FreeHostingEU.com
12. Uhostfull.com
13. 50Webs.com
14. ZettaHost.com
15. x10hosting.com | 594 |
| 15 | 📌 Random Anime Pic With Refresh Button TPY Code
🚀 Command: /anime
🛠 TPY Code:
markup = InlineKeyboardMarkup()
markup.add( InlineKeyboardButton( text="🔁 Refresh", callback_data="/anime edit"))
api = bunchify(HTTP.get("https://nekos.life/api/v2/img/neko").json())
anime = api['url']
media = InputMediaPhoto(media=f"{anime}")
if params == 'None':
bot.sendPhoto(chat_id=u, photo=anime, reply_markup=markup)
if params == "edit":
bot.editMessageMedia(chat_id=u, message_id=message.message_id, media=media, reply_markup=markup)
┌©️ Credit: @HazexTBC
├👨🏻💻 Developer: @MrHazex
└‼️ Error & Support: Group Chat
⚠️ NOTE :- MUST GIVE CREDIT IF YOU ARE POSTING THIS IN YOUR CHANNEL | 479 |
| 16 | 📌 Random Anime Pic TPY Code
🚀 Command: /anime
🛠 TPY Code:
api = bunchify(HTTP.get("https://nekos.life/api/v2/img/neko").json())
pic = api['url']
bot.sendPhoto(chat_id=u, photo = pic)
┌©️ Credit: @HazexTBC
├👨🏻💻 Developer: @MrHazex
└‼️ Error & Support: Group Chat
⚠️ NOTE :- MUST GIVE CREDIT IF YOU ARE POSTING THIS IN YOUR CHANNEL | 383 |
| 17 | ✅ Bot Restored
⚙️ All Functions Working Fine
🤖 Bot - @HazexBot | 361 |
| 18 | 📌 Chat GPT TPY Code
🚀 Command: *
🛠 TPY Code:
bot.sendChatAction(
chat_id=message.chat.id,
action="typing")
ms = message.text
url = f"https://chatgpt.apinepdev.workers.dev/?question={ms}"
try:
get = bunchify(HTTP.get(url).json())
bot.replyText(chat_id=u, reply_to_message_id=message.message_id, text=get["answer"])
except:
bot.replyText(chat_id=u, reply_to_message_id=message.message_id, text="<b>❌ Error Occurred!</b>")
┌©️ Credit @HazexTBC
├🎖 API By - @Prime_NepCoder
├👨🏻💻 Developer: @MrHazex
└‼️ Error & Support: Group Chat | 392 |
| 19 | 👨🏻💻 Want to Post this type post in your Channel
🤖 Use - @HazexPost_Bot | 325 |
| 20 | 🔻 Click on Button To Generate Random Anime Pics | 357 |
