en
Feedback
—͟͞͞⛥ 𓆩 𝙋𝙍𝙄𝙑𝘼𝙏𝙀 𝘾𝙊𝘿𝙀𝙓 𓆪 ❤️

—͟͞͞⛥ 𓆩 𝙋𝙍𝙄𝙑𝘼𝙏𝙀 𝘾𝙊𝘿𝙀𝙓 𓆪 ❤️

Open in Telegram

🚩 Channel was restricted by Telegram

Show more
No data
Subscribers
-524 hours
+27 days
+1930 days
Posts Archive
🤖 Bots.Business Multiple Channels Joined Check BJS Code 👨‍💻
❗️At First Make A /start Command Code.
example- 👩‍💻 Command : /start
var button = [
  [{title: "🧑🏻‍💻 𝐃𝐞𝐯𝐞𝐥𝐨𝐩𝐞𝐫", url: "https://t.me/BJ_Tricks"},  {title: "𝐂𝐡𝐚𝐧𝐧𝐞𝐥", url: "https://t.me/BJ_Tricks"}],
  [{title: "𝐂𝐡𝐚𝐧𝐧𝐞𝐥", url: "https://t.me/BJ_Tricks"}],
  [{title: "✅ Joined", command: "/joined"}]
];

Bot.sendInlineKeyboard(button, "*🌟 Join Our All Channels To Use Our Bot 👇\n@BJ_Tricks \n@Bjdevsapi\n@BJTRICKS_Proof\nAfter Joined Click On ✅ Joined*");
❗️Then /joined Command Code
👩‍💻 Command : /joined
var channels = ["@BJ_Tricks", "@bjdevsapi", "@BJTRICKS_Proof"];  // Array of your multiple channels
HTTP.get({
  url: "https://membership.bjcoderx.workers.dev/?bot_token=" + bot.token + "&user_id=" + user.telegramid + "&chat_id=" + encodeURIComponent(JSON.stringify(channels)),
  success: "/check"
});
❗️ Then  /check Command Code
👩‍💻Command - /check
if (content) {
  const { status, is_joined } = JSON.parse(content);

  if (status === "false") {
    return Bot.sendMessage("*Please make the bot an admin on your All channels*");
  }

  if (is_joined) {
    Bot.sendMessage("Thank You For Join Our Channels!");
    Bot.runCommand("/MainMenu")
  } else {
    Bot.sendMessage("*⚠️ You need to join all channels To Use Our Bot.*");
  }
}
❗️Donot Change Any Command Name ❗️Make The bot Admin in Your Multiple Channels ❗️You Can run Your Main menu Command Using Bot.runCommand(" MainMenu")
© @BJ_Devs © @MrBaBlU0J Contact With Us If You Face Any Problem Or errors #Multiple #MultipleChannel #MultipleJoin #MultipleChannelsCheck #MultipleCheck #BotsBusiness #BJ_Tricks #BJS

🌟✨ Unleash Your Inner Developer! ✨🌟 Hey, tech wizards! 🧙‍♂️👨‍💻 Ready to dive into the world of AI? Check out this ChatGPT website source code and start building your own chatbot today! 🤖💬 ▎🆓 Free Hosting Steps: 1. Choose a Platform: Use platforms like GitHub Pages, Vercel, or Netlify for easy hosting. 2. Upload Your Code: Simply drag and drop your HTML files into the platform. 3. Connect Your Domain (Optional): Customize your URL for a personal touch! 🌐 4. Deploy  Share: Hit that deploy button and watch your creation come to life! 🎉 © Coder Ajinkya

🎯 𝑹𝒂𝒏𝒅𝒐𝒎 𝑸𝒖𝒊𝒛 𝑩𝒐𝒕 💬 Command :- /quiz 🖥️ BJS :-
function startQuiz() {
    var apiUrl = "https://opentdb.com/api.php?amount=1";

    Api.sendChatAction({
        chat_id: chat.chatid,
        action: "typing"
    });

    HTTP.get({
        url: apiUrl,
        success: "/onQuiz",
        error: "/onError"
    });
}

Bot.sendMessage("*🌟 𝑁𝑒𝑤 𝑄𝑢𝑖𝑧 𝐴𝑙𝑒𝑟𝑡 ! 𝐴𝑟𝑒 𝑌𝑜𝑢 𝑅𝑒𝑎𝑑𝑦 𝑡𝑜 𝑇𝑒𝑠𝑡 𝑌𝑜𝑢𝑟 𝐾𝑛𝑜𝑤𝑙𝑒𝑑𝑔𝑒 ? 📚*");
startQuiz();
💬 Command :- /onQuiz 🖥️ BJS :-
var response = JSON.parse(content);

if (response.response_code === 0 && response.results.length > 0) {
    var quiz = response.results[0];
    var question = "🎯" + quiz.question;
    var correctAnswer = quiz.correct_answer;
    var options = quiz.incorrect_answers.concat(correctAnswer);
    options = options.sort(() => Math.random() - 0.5);

    Api.sendPoll({
        chat_id: chat.chatid,
        question: question,
        options: options,
        type: "quiz",
        correct_option_id: options.indexOf(correctAnswer),
        explanation: "The correct answer is: " + correctAnswer,
        is_anonymous: false
    });

    User.setProperty("quiz_question", question, "string");
    User.setProperty("correct_answer", correctAnswer, "string");

    Api.sendMessage({
        chat_id: chat.chatid,
        text: "🔍 𝑊𝑎𝑛𝑡 𝑡𝑜 𝐸𝑥𝑝𝑙𝑜𝑟𝑒 𝑀𝑜𝑟𝑒 𝑄𝑢𝑖𝑧𝑧𝑒𝑠? 🌟",
        reply_markup: {
            inline_keyboard: [[
                { text: "𝑺𝒆𝒂𝒓𝒄𝒉 𝑴𝒐𝒓𝒆 🔍", callback_data: "/quiz" }
            ]]
        }
    });

} else {
    Bot.sendMessage("Unable to fetch quiz. Try again later.");
}

Command :- ☀️ weather Bjs :-
Api.sendChatAction({
  chat_id: chat.chatid,
  action: "typing"
})
Api.sendChatAction({
  chat_id: chat.chatid,
  action: "typing"
})
HTTP.get({
  url: "http://api.weatherapi.com/v1/current.json?key=2e496852627641b0a37123040212608&q=" +
    message +
    "&aqi=yes",
  success: "rr"})
Command :- rr Bjs :-
var result = JSON.parse(content)
var name = result.location.name
var region = result.location.region
var country = result.location.country
var temp = result.current.temp_c
var lastu = result.current.last_updated
var text = result.current.condition.text
var lati = result.location.lat
var longi = result.location.lon
var wind_kph = result.current.wind_kph
var wd = result.current.wind_degree
var hum = result.current.humidity
var c = result.current.cloud
var gmph = result.current.gust_mph
var gkph = result.current.gust_kph
if (name == undefined) {
  Bot.sendMessage("Error")
} else {
  Bot.sendMessage(
    "*🌤️ Weather Deatails \n\nName: " +
      name +
      "\n\n🌅Region: " +
      region +
      "\n\n🇮🇳Country: " +
      country +
      "\n\n🌡️Temperature: " +
      temp +
      "° C\n\n💭Wind speed: " +
      wind_kph +
      " kp/h\n\n🌬️Wind degree: " +
      wd +
      "\n\n🧞Humidity: " +
      hum +
      "\n\n☁️Cloud: " +
      c +
      "\n\n🤧weather description: " +
      text +
      " \n\n💫Last updated : " +
      lastu +
      "\n\n☁️Latitude: " +
      lati +
      "\n\n☁️Longitude: " +
      longi +
      "\n\n⚡Gust_mph: " +
      gmph +
      "\n\n⚡Gust_kph: " +
      gkph +
      "*"
  )
}

I Need Urgent Money For My Study Then I Am Selling My Channel a big offer one channel + One Group + Terabox video player web source code + one telegram account with Afghanistan number ☄️ In Just 20$ 🛒 Channel Name: BJ Methods ✔️ Subscribers: 2.1k 🔥 Channel: @BJ_Methods 👑 Group name BJ DUSSICATION Subscribers 437 Group: @Bj_Tricks_Chat TeraBox : https://bj-terabox-video-player.vercel.app/ Plus this bot  code @BJ_TruecallerBot My Proof Channel : @BJTricks_Proof Fast come in Dm: @BJ_Coder 👑 @BJ_Tricks_SupportBot 📞

I Need Urgent Money For My Study Then I Am Selling My Channel a big offer one channel + One Group + Terabox video player web source code + one telegram account with Afghanistan number ☄️ In Just 20$ 🛒 Channel Name: BJ Methods ✔️ Subscribers: 2.1k 🔥 Channel: @BJ_Methods 👑 Group name BJ DUSSICATION Subscribers 437 Group: @Bj_Tricks_Chat TeraBox : https://bj-terabox-video-player.vercel.app/ Fast come in Dm: @BJ_Coder 👑 @BJ_Tricks_SupportBot 📞

Telegram Channel Available For Sale full Active ❤️‍🔥 Channel Name: BJ Methods ✔️ Subscribers: 2.90k 🔥 Channel: @BJ_Methods 👑 Payment method: Pakistani and Binance for Other Countries 🇵🇰🛒 Dm: @BJ_Coder 👑 @BJ_Tricks_SupportBot 📞

Telegram Channel Available For Sale full Active ❤️‍🔥 Channel Name: BJ Methods ✔️ Subscribers: 2.90k 🔥 Channel: @BJ_Methods 👑 Payment method: Pakistani and Binance for Other Countries 🇵🇰🛒 Dm: @BJ_Coder 👑

Now easily install Original GTA 5 In Your Android Phone 😀
Conditions: 🔝 1)Minimum ram -6 gb 2)Device storage - 128-256 gb ( bcz game is 60Gb ) 👨‍💻 3) the processor should be Good  ❤️‍🔥 4) You should have 60-70 GB net to download the game 😐
👨‍💻 GTA 5 Full Setup Video - Click 👑 GTA 5 (54GB) File - Click ☄️ Horizon Emulator - Click 🗿 Give 50 reaction for new method ❤️‍🔥
ꜱʜᴀʀᴇ ꜰᴏʀ ᴍᴏʀᴇ :  @BJ_Tricks 👑

Now easily install Original GTA 5 In Your Android Phone 🤯 GTA 5 FULL SETUP VIDEO - CLICK GTA 5 (54GB) FILE - CLICK HORIZON EMULATOR - CLICK

FF Uid To Details Bot  [TBC] 😀 Command : * 🤖 TPY :
#Send typing action
bot.sendChatAction(chat_id=message.chat.id, action="typing")

# Get the userid from the message
userid = message.text.strip()

# Define the API URL
url = f'https://tele-tool.vercel.app/ff?id={userid}'

try:
    # Fetch the data from the API
    response = HTTP.get(url)
    response.raise_for_status()  # Check for HTTP errors
    data = response.json()  # Parse the response as JSON

    # Format the fetched details with emojis
    details = f"""
<b>📞 User id to nickname Details:</b>

<blockquote><b>📡 Name:</b> {data.get('name', 'Not Found')}
<b>🌍 id:</b> {data.get('id', 'Not Found')}
<b>🔢 account_creation_date:</b> {data.get('account_creation_date', 'Not Found')}
<b>🔢 region:</b> {data.get('region', 'Not Found')}
<b>📍 is banned:</b> {data.get('is_banned', 'Not Found')}
<b>🔴 ban period:</b> {data.get('ban_period', 'Not Found')}
</blockquote>
"""

    # Send the formatted details back to the user
    bot.sendMessage(
        chat_id=message.chat.id,
        text=details,
        parse_mode="HTML",
        reply_to_message_id=message.message_id
    )

except Exception as e:
    # Send error message if any exception occurs
    bot.sendMessage(
        chat_id=message.chat.id,
        text="❌ <b>Error Occurred!</b>\nif you enter others game id bot will not work .",
        parse_mode="HTML",
        reply_to_message_id=message.message_id
    )
How To Host: https://t.me/BJ_Devs/5378 ⚠️ Give credit if you are posting on your channel. 👨‍💻 Created By: Mr,BaBlU © Credit: @BJ_Tricks

📨 Steps to Send a Countdown Using BJS in BB 1. 📋 Paste the BJS in BB. 2. 💬 Send a message to the channel and copy the message ID. 3. 🔧 Update the code with your channel's chat ID and the copied message ID. 4. ▶️ Execute the command. 5. 🔒 Check bot permissions in the channel. Credit: @Privates_Bots 👑

Above countdown bjs
// Define the chat_id and message_id variables
let chatId = "@RareCodes";
let messageId = "1950";

// Get the current date and time in "Asia/Kolkata" timezone
let free = new Date().toLocaleString("en-US", {
  timeZone: "Asia/Kolkata"
});
let now = new Date(free);

// Define the target date (New Year 2025)
let targetDate = new Date("2025-01-01T00:00:00");

// Calculate the difference in milliseconds
let diff = targetDate - now;

if (diff > 0) {
  // Convert the difference to hours, minutes, and seconds
  let hours = Math.floor((diff % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
  let minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60));
  let seconds = Math.floor((diff % (1000 * 60)) / 1000);

  // Cool and modern countdown message
  let countdownMessage = 
    `<b>🎉✨ Countdown to <u>New Year 2025</u> 🎇</b>\n\n` +
    `<b>🕒 Time Left:</b>\n` +
    `<code>⏰ ${hours} Hours\n⌛ ${minutes} Minutes\n⏳ ${seconds} Seconds</code>\n\n` +
    `<b>🌟 Let's Get Ready to Celebrate! 🥳</b>\n\n` +
    `<i>🔥 Stay tuned for the <u>biggest fireworks of the year!</u> 🔥</i>`;

  // Send the countdown message
  Api.editMessageText({ 
    chat_id: chatId,
    message_id: messageId,
    text: countdownMessage,
    parse_mode: "html"
  });

  // Re-trigger the countdown after 2 seconds
  Bot.run({
    command: "/countdown",
    run_after: 2
  });

} else {
  // If the countdown is complete, send a Happy New Year message
  let happyNewYearMessage = 
    `<b>🎆🔥 Happy New Year 2025! 🔥🎆</b>\n\n` +
    `<i>✨ The wait is over! It's time to step into a brand-new year filled with endless possibilities, fresh beginnings, and countless opportunities. 🥂</i>\n\n` +
    `<b>🌟 As the clock strikes midnight, let's celebrate all that we have achieved and all that we dream to accomplish in the year ahead. 🚀</b>\n\n` +
    `<i>🌈 May your days be filled with laughter, your nights with peace, and your heart with joy. Here's to making 2025 your best year yet! 🥳</i>\n\n` +
    `<b>💡 Resolutions, goals, and dreams await you in this exciting journey ahead. Let the fireworks of hope light up your path! 🎇</b>\n\n` +
    `<i>🎉 Thank you for being part of this incredible adventure. Together, we will make this year unforgettable! 🌟</i>\n\n` +
    `<b>❤️ Stay safe, stay positive, and let the magic of the New Year guide you to greatness. Cheers to 2025! 🥂</b>`;

  // Send the Happy New Year message
  Api.editMessageText({ 
    chat_id: chatId,
    message_id: messageId,
    text: happyNewYearMessage,
    parse_mode: "html"
  });
}
Credit: @Privates_Bots 👑

📨 Steps to Send a Countdown Using BJS in BB 1. 📋 Paste the BJS in BB. 2. 💬 Send a message to the channel and copy the message ID. 3. 🔧 Update the code with your channel's chat ID and the copied message ID. 4. ▶️ Execute the command. 5. 🔒 Check bot permissions in the channel.

📨 Steps to Send a Countdown Using BJS in BB 1. 📋 Paste the BJS in BB. 2. 💬 Send a message to the channel and copy the message ID. 3. 🔧 Update the code with your channel's chat ID and the copied message ID. 4. ▶️ Execute the command. 5. 🔒 Check bot permissions in the channel.

Above countdown bjs
// Define the chat_id and message_id variables
let chatId = "@RareCodes";
let messageId = "1950";

// Get the current date and time in "Asia/Kolkata" timezone
let free = new Date().toLocaleString("en-US", {
  timeZone: "Asia/Kolkata"
});
let now = new Date(free);

// Define the target date (New Year 2025)
let targetDate = new Date("2025-01-01T00:00:00");

// Calculate the difference in milliseconds
let diff = targetDate - now;

if (diff > 0) {
  // Convert the difference to hours, minutes, and seconds
  let hours = Math.floor((diff % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
  let minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60));
  let seconds = Math.floor((diff % (1000 * 60)) / 1000);

  // Cool and modern countdown message
  let countdownMessage = 
    `<b>🎉✨ Countdown to <u>New Year 2025</u> 🎇</b>\n\n` +
    `<b>🕒 Time Left:</b>\n` +
    `<code>⏰ ${hours} Hours\n⌛ ${minutes} Minutes\n⏳ ${seconds} Seconds</code>\n\n` +
    `<b>🌟 Let's Get Ready to Celebrate! 🥳</b>\n\n` +
    `<i>🔥 Stay tuned for the <u>biggest fireworks of the year!</u> 🔥</i>`;

  // Send the countdown message
  Api.editMessageText({ 
    chat_id: chatId,
    message_id: messageId,
    text: countdownMessage,
    parse_mode: "html"
  });

  // Re-trigger the countdown after 2 seconds
  Bot.run({
    command: "/countdown",
    run_after: 2
  });

} else {
  // If the countdown is complete, send a Happy New Year message
  let happyNewYearMessage = 
    `<b>🎆🔥 Happy New Year 2025! 🔥🎆</b>\n\n` +
    `<i>✨ The wait is over! It's time to step into a brand-new year filled with endless possibilities, fresh beginnings, and countless opportunities. 🥂</i>\n\n` +
    `<b>🌟 As the clock strikes midnight, let's celebrate all that we have achieved and all that we dream to accomplish in the year ahead. 🚀</b>\n\n` +
    `<i>🌈 May your days be filled with laughter, your nights with peace, and your heart with joy. Here's to making 2025 your best year yet! 🥳</i>\n\n` +
    `<b>💡 Resolutions, goals, and dreams await you in this exciting journey ahead. Let the fireworks of hope light up your path! 🎇</b>\n\n` +
    `<i>🎉 Thank you for being part of this incredible adventure. Together, we will make this year unforgettable! 🌟</i>\n\n` +
    `<b>❤️ Stay safe, stay positive, and let the magic of the New Year guide you to greatness. Cheers to 2025! 🥂</b>`;

  // Send the Happy New Year message
  Api.editMessageText({ 
    chat_id: chatId,
    message_id: messageId,
    text: happyNewYearMessage,
    parse_mode: "html"
  });
}

Truecaller Bot  [TBC] 😀 Command : * 🤖 TPY :
# Send typing action
bot.sendChatAction(chat_id=message.chat.id, action="typing")

# Get the phone number from the message
phone_number = message.text.strip()

# Define the API URL
url = f'https://turecaller.pikaapis0.workers.dev/?number={phone_number}'

try:
    # Fetch the data from the API
    response = HTTP.get(url)
    response.raise_for_status()  # Check for HTTP errors
    data = response.json()  # Parse the response as JSON

    # Format the fetched details with emojis
    details = f"""
<b>📞 Truecaller API Details:</b>

<blockquote><b>📡 Carrier:</b> {data.get('carrier', 'Not Found')}
<b>🌍 Country:</b> {data.get('country', 'Not Found')}
<b>🔢 International Format:</b> {data.get('international_format', 'Not Found')}
<b>📍 Local Format:</b> {data.get('local_format', 'Not Found')}
<b>🗺️ Location:</b> {data.get('location', 'Not Found')}
<b>⏰ Timezones:</b> {', '.join(data.get('timezones', []) if data.get('timezones') else ['Not Found'])}
<b>🔎 Truecaller Name:</b> {data.get('Truecaller', 'Not Found')}
<b>👤 Username:</b> {data.get('Unknown', 'Not Found')}
</blockquote>
"""

    # Send the formatted details back to the user
    bot.sendMessage(
        chat_id=message.chat.id,
        text=details,
        parse_mode="HTML",
        reply_to_message_id=message.message_id
    )

except Exception as e:
    # Send error message if any exception occurs
    bot.sendMessage(
        chat_id=message.chat.id,
        text="❌ <b>Error Occurred!</b>\nCould not fetch details. Please try again later.",
        parse_mode="HTML",
        reply_to_message_id=message.message_id
    )
How To Host: https://t.me/BJ_Devs/5378 ⚠️ Give credit if you are posting on your channel. 👨‍💻 Created By: Mr,BaBlU © Credit: @BJ_Tricks

🧑‍💻 VS Code Run In Phone (Method) 🔤 Download This Turmux App & Install These All Packages. 01. pkg update 02. pkg upgrade 03. pkg install proot-distro 04. proot-distro list 05. proot-distro install ubuntu 06. proot-distro login ubuntu 07. apt update 08. apt upgrade 09. apt install wget 10. wget https://github.com/coder/code-server/releases/download/v4.16.1/code-server-4.16.1-linux-arm64.tar.gz 11. tar -xvf ./code-server-4.16.1-linux-arm64.tar.gz 12. cd code-server-4.16.1-linux-arm64 cd bin 13. export PASSWORD="password" 14. ./code-server 📹 Tutorial Coming Soon....

📔 API Name: All in one Media Downloader 🔗 API URL: https://aiovd.hideme.eu.org/ 🖼 Action: Retrieve video metadata (e.g., title, duration, thumbnail, format, and size) along with media download functionality. 🔻 Request Method: GET (JSON) 🔮 Parameters: - url: Your Video Link (required) 💠 Example: https://aiovd.hideme.eu.org/?url=YOUR_VIDEO_URL 🔷 Response Example (JSON):
{ "status": "success", "metadata": { "title": "Sample Video", "duration": "5:32", "thumbnail": "https://example.com/sample-thumbnail.jpg", "format": "MP4", "size": "12MB" }, "download_url": "https://example.com/sample-video.mp4" }
©️ Copy Claims By: @cdxmk 📌 KINDLY GIVE REACTIONS ON EVERY POST 🥳

🌎 Introducing: @BJ_Global_TranslatorBot 🚀  👋 Welcome to Global Translator Bot!  Easily translate any message into your preferred language in just seconds! 💡 How to Use:  1️⃣ Tap 🌎 Select Language to choose your preferred language.  2️⃣ Send any text message, and it will be translated instantly!  Change your language anytime by selecting it again.  🌀 Features:  - Fast and accurate translations  - Supports multiple languages  - Simple and user-friendly  Let’s break the language barriers together! 🌍 👉 Start Exploring Now: @BJ_Global_TranslatorBot