Pʀɪᴠᴀᴛᴇs Bᴏᴛs ⚡


Channel's geo and language: India, English
Category: Telegram


🖐🏻 Welcome to @Privates_Bots!
🤖 Hello, Everyone! Here, I’ll Teach You How To Create Telegram Bots.
➡ Join Our Discussion Group: @Private_Bots_Chats
📞 For Sponsorships, Ads, or Promotions, Contact Us At @PB_Sponsorship.

Related channels  |  Similar channels

Channel's geo and language
India, English
Category
Telegram
Statistics
Posts filter


💠 Forward Tag Remover BJS Code.

❤️ Command:- *

❤️‍🔥 BJS:-
if (request.forward_from || request.forward_from_chat) {
  if (request.forward_from_chat) {
    Api.copyMessage({
      chat_id: user.telegramid,
      from_chat_id: request.forward_from_chat.id,
      message_id: request.forward_from_message_id
    })
  } else if (request.forward_from) {
    Api.copyMessage({
      chat_id: user.telegramid,
      from_chat_id: user.telegramid,
      message_id: request.message_id
    })
  }
  Api.deleteMessage({
    chat_id: user.telegramid,
    message_id: request.message_id
  })
} else {
  Bot.sendMessage("*This is not a forwarded message*.")
}

🎃 Credit:- @AlgoRaushan


🌟 Introducing @PrivatesGPTBot! 🌟

🤖 Ready to chat? Your personal AI assistant is here to help! Whether you need answers, advice, or just a friendly conversation, I’ve got you covered! 💬✨

💡 What can I do for you? 
- Answer your burning questions! 🔥 
- Provide fun facts and trivia! 📚 
- Help with study tips and tricks! 🎓 
- Chat about your favorite topics! 🎉 

👉 Just type your message and let’s get started! Your private chat buddy is waiting! 🚀

🔗 Start chatting now: @PrivatesGPTBot 
🗨️ Let the conversations begin! 🗨️


Unleash your creativity with our Text-to-Image Generator Bot! 🚀💭

🧿 Coming Soon Till Drop Reactions!


To create a bot that automatically deletes messages containing links in a channel and reports them to the owners, you can use the always-running command (*) to check each incoming message. If a message contains a link, the bot will delete it and send a notification to the owners.

Here’s how you can implement this:

### Command: *
let request = JSON.parse(request);

if (request.channel_post) {
var msgid = request.channel_post.message_id;
var ch = request.channel_post.sender_chat.id;
var text = request.channel_post.text;

// Regular expression to detect links
var linkPattern = /(https?:\/\/[^\s]+)/g;

// Check if the message contains a link
if (linkPattern.test(text)) {
// Delete the message
HTTP.post({
url: "https://api.telegram.org/bot" + bot.token + "/deleteMessage",
body: {
chat_id: ch,
message_id: msgid
}
});

// Notify the owners about the deleted message
Api.sendMessage({
chat_id: 'YOUR_ADMIN_CHAT_ID', // Replace with your admin chat ID
text: "A message containing a link has been deleted:\n\n" +
"Channel ID: " + ch + "\n" +
"Message ID: " + msgid + "\n" +
"Text: " + text
});
}
}
### Explanation:
1. **Always Running Command (*)**: This command allows the bot to check every message sent to the channel.Link Detectionon**: A regular expression (linkPattern) is used to detect if the message contains any links.Delete Messagege**: If a link is detected, the bot sends a request to the Telegram API to delete the message.Notify Ownersrs**: After deleting the message, the bot sends a notification to the owners (replace YOUR_ADMIN_CHAT_ID with the actual chat ID of the owners).

### Important Notes:
- Ensure that the bot has the necessary permissions to delete messages in the channel.
- Replace 'YOUR_ADMIN_CHAT_ID' with the actual chat ID of the owners or admin group where you want to send the notification.
- This setup will help maintain the channel by removing unwanted links and keeping the owners informed.

1k 0 16 19 34

🚀 Text to Video API Endpoint Overview 🚀

🎥 Generate Videos from Text Descriptions!

Endpoint:
Make a POST request to:
https://api.abhibhai.com/api/v6/video/text2video

📝 Request Body Attributes:

- key: Your API key for authorization.
- model_id: Choose from models like zeroscope, dark-sushi-mix-vid, etc.
- prompt: Text description for the video.
- negative_prompt: Items to exclude from the video.
- seed: For reproducibility; use null for random.
- height & width: Maximum 512 pixels.
- num_frames: Max 25 frames (default: 16).
- num_inference_steps: Max 50 steps (default: 20).
- guidance_scale: Range from 0 to 8.
- output_type: Choose mp4 or gif.


📡 Python Request Example:

import requests
import json

url = "https://api.abhibhai.com/api/v6/video/text2video"

payload = json.dumps({
"api_key": "",
"model_id": "zeroscope",
"prompt": "A flying car",
"negative_prompt": "low quality",
"height": 512,
"width": 512,
"num_frames": 16,
"num_inference_steps": 20,
"guidance_scale": 7,
"output_type": "gif"
})

headers = {
'Content-Type': 'application/json'
}

response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
🔗 Get started and create your own videos today!
🔑 Get your API from @abhibotsbot!
© Copyright And API Credit: Abhiraj


🎤✨ Meet @Adv_TextToSpeechBot! ✨🎤

Are you ready to transform your text into captivating voice output? 🌟 With @Adv_TextToSpeechBot, you can easily convert any text into stunning audio in just a few clicks! 🖱️💬

🔊 Features:
- 🎶 A variety of voice options to choose from!
- 🌍 Supports multiple languages!
- ⚡ Quick and user-friendly!

Whether it’s for a presentation, a fun project, or simply to hear your favorite quotes, @Adv_TextToSpeechBot is here to help! 📚💡

👉 How to use:
1. Start a chat with @Adv_TextToSpeechBot.
2. Type or paste your text 📜.
3. Select your preferred voice and hit 'Convert'! 🚀

Let your words be heard with @Adv_TextToSpeechBot! 🎉✨ Try it out today and enhance your communication experience! 💬🔊


🧪 Get Forward Message Info From Channel.

🔰 Command:- your command

🎊 Answer:- *🦜 Forward Message From Channel.*

Wait For Answer:- On

🌐 BJS:-
if (request.forward_from_chat) {
  var id = request.forward_from_chat.id.toString()
  var uname = request.forward_from_chat.username
  var title = request.forward_from_chat.title
  var type = request.forward_from_chat.type
  var msg_id = request.forward_from_message_id

  if (request.forward_date) {
    var ttmm = request.forward_date * 1000
  } else {
    var ttmm = request.date * 1000
  }

  var date_time = Libs.DateTimeFormat.format(
    ttmm,
    "dddd, dd/m/yyyy",
    "Asia/Kolkata"
  )

  if (!uname || uname == null) {
    var username = `🚫 Not Set`
  } else {
    var username = "@" + uname
  }

  var uss =
    "Check Now"

  var txt = `🦋 Title: ${title}\n\n▫️ Type: ${type}\n\n🎷 Chat ID: ${id}\n\n🌹 Username: ${username}\n\n🕰️ Posted On: ${date_time}\n\n🥷 Message Link: ${uss}`

  Api.sendMessage({ text: txt, parse_mode: "html" })
} else {
  Api.deleteMessage({ message_id: request.message_id })
}
💠 Must Download Date/Time Libs.

❤️‍🔥 Credit By:- @AlgoRaushan

1.4k 0 12 17 34

🌟 Introducing the Ultimate Auto Reaction Bot!


🚀 Say goodbye to boring channel posts and hello to a world of excitement with @PBReactionBot! 🎉

What Can @PBReactionBot Do? ✨ 
Drop 20 Reactions on your channel posts in a flash! ⚡ 
✅ Boost engagement and make your content shine! 🌈 
✅ Keep your audience entertained and coming back for more! 🥳 

🎈 Why Choose @PBReactionBot?

- Effortless reactions that bring your posts to life! 
- Perfect for channels looking to increase interaction! 
- Fun and easy to use—just start the bot and watch the magic happen! ✨ 

👉 Ready to elevate your channel? 
💬 Just type /start and let the fun begin! 🎊

🔔 Don’t forget to invite your friends to experience the joy of automated reactions! Let’s spread some positivity together! 💖

Join the party now with @PBReactionBot!


💫 Happy Onam 🌼

2k 0 4 24 38

🌟✨ Transform Your Words into Stunning Images! ✨🌟

🚀 Are you ready to unleash your creativity? 🎨 Our amazing website lets you convert your text into breathtaking images in just a few clicks! 🌈✨

💡 Supported Modes:

- 🌼 Pollination: Watch your ideas bloom!
- 🎨 Dalle: Create art like never before!
- 🖼️ Prodia: Turn phrases into masterpieces!
- 🌌 Stable Diffusion: Experience the magic of AI!

🔗 Dive into the world of imagination now! 👉 Create Your Image

💖 Whether you're an artist, writer, or just looking to have some fun, our tool is perfect for everyone! Let your words come to life! 🌟

🖌️✨ Start creating today and let your imagination run wild! ✨🖌️


🙈 Idea/Design/API BY: ᴳᵒᵈ乂Aⱥℝⱥbh♛🖤♛


MultipleFileSharingBot.php
1.5Kb
📁🤖 Multiple File Sharing Bot - Seamless Sharing On Your Channel! 🌟 Share Up To 30 Files Effortlessly With Just A Few Clicks.

➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖

🔐 How to setup this Bot?

1. Create A New
MultipleFileSharingBot.php File In Your Website File Manager!
2. Now Paste Above Codes!
3. Make Sure To Change
“botToken”, Then Set Your Webhook For Your Bot From Below Url.

🛠️ Set WebHook URL: https://bjtricksgifts.serv00.net/WebHook

⚠ *3rd Step Is Very Important!

2.1k 0 36 12 32

📁 Want Multiple File Sharing Bot (In PHP)?
Poll
  •   Yes
  •   No
217 votes


Want "Text To Video API".

🧬 Drop 100 Different Reacti
ons!

2.5k 0 3 16 114

🚷🔥 Presenting @AutoKickerKBot - The Ultimate Community Guardian! 🛡️🧨

Are you tired of users slipping away from your Telegram channel or group unnoticed? Not anymore! Banish the exits with @AutoKickerKBot! 🙅‍♂️🚪

Keep
the integr
ity of your community intact by automatically kicking out those who dare to abandon ship. Say goodbye to inactive members! ⚔️🚷
Empowe
r your group or channel with @AutoKickerKBot for a vibrant and committed community. Let's ensure every member stays engaged and connected! 🌟💥💬

Ready to elevate you
r
group management? Try out @AutoKickerKBot today and watch your community thrive! 🚀🛠️

@AutoKickerKBot 🛡️🔥


🛡 Handling “Message too long” Error

✏️ Telegram allows sending a Text message of max 4096 characters by bot

💡 Send Message in multiple messages chunks.

Here is the BJS code to do that:
let chatId = chat.chatid; // Replace with chat id
let message = 'Long Message to send…'; // Replace with the long message

// Function to split a long message into smaller pieces/chunks
function splitMessage(message, maxLength = 4096) {
  let chunks = []

  // Split the message in multiple chunks each of max 4096 characters
  for (let i = 0; i < message.length; i += maxLength) {
    chunks.push(message.substring(i, Math.min(message.length, i + maxLength)))
  }

  return chunks;
}

// Function to send a long message in smaller pieces
function sendMessageInChunks(chatId, text) {
  // split the message into chunks
  var chunks = splitMessage(text)

  // Send the pieces of chunks one after other
  for (let i = 0; i < chunks.length; i++) {
    Api.sendMessage({ chat_id: chatId, text: chunks[i] })
  }
}

// Send the message in pieces
sendMessageInChunks(chatId, message)
🧑‍💻 Coded by: @devendra
©  Copyright
: @BjsCodes
❗️ Only use in state of high requirement, else BB server may get load.


🦶🏻Sʜᴏᴜʟᴅ I Mᴀᴋᴇ ᴀɴ "Aᴜᴛᴏ Kɪᴄᴋᴇʀ Bᴏᴛ"?
Poll
  •   🤗 Yᴇs
  •   😕 Nᴏ
99 votes


🔐 How to setup this Bot?

1. Create A New
chatgpt.php File In Your Website File Manager!
2. Now Paste Above Codes!
3. Make Sure To Change "webhookUrl" And "botToken", Then Set Your Webhook For Your Bot From Below Url.

🛠️ Set WebHook URL: https://privatesbots.serv00.net/setWebhook.html

⚠ *
3rd St
ep Is Very Important!

2.3k 0 28 20 25

CHAT GPT, BB HELPER, TBC HELPER, COPILOT,AI GIRLFRIEND.php
9.1Kb
🚀 Exciting Announcement Alert!
🔍
Featuring Chat GPT for captivating conversations, BB Helper for bots business help, TBC Helper for telebot creator help, AI GF For Virtual Girlfriend and CoPilot for creator's navigation! 💬💼💰✈️
Don't miss this opportunity to level up your knowledge and expertise! Dive into the document in our channel today! 🚀🌌💡

🧑🏼‍💻 1st Creator: ᴍʀ sʏᴄᴏ 🍅

🧑🏼‍💻 2nd Creator: 𓆩〭〬𝆺꯭𝅥Mʀ Bᴀʙʟᴜ𝆺꯭𝅥💸𓆪

© Posted On: @Privates_Bots

2k 0 50 25 15

🫶🏻 Introducing @PrivatesConverterBot!

🚀 Ready to revol
utionize your conversions? Say goodbye to confusion and hello to seamless exchanges between BJS and TPY! 🌐✨

🔄 Convert BJS
to TPY and TPY to BJS in a flash! Whether you’re trading, sharing, or just curious, our bot has got you covered.

💡
Why choose @PrivatesConverterBot?
- ⚡ Fast & E
fficient: Get instant results!
- 🔒 Secure: Your data is safe with us!
- 🌈 User-Friendly: Simple commands for everyone!

👉 How to Use:
1. Start a chat with @PrivatesConverterBot.
2. Type your conversion request.
3. Get your answer in seconds!

Join the conversion revolution today! 🎉 Don’t miss out—try it now and experience the magic! ✨


🌟 Exciting News, Everyone! 🌟

The poll is in, and you all have spoken! 🎉 With 3-star reactions rolling in, we’re thrilled to announce that the BJS to TPY Converter and TPY to BJS Converter bots are officially on their way! 🚀✨

Get ready for a game-changing experience as these bots will be dropping in later this evening! 🌙💻

Stay tuned and keep your notifications on! You won’t want to miss it! 🔔🔥

20 last posts shown.