ar
Feedback
FlashCom - BJS Codes / Bots

FlashCom - BJS Codes / Bots

الذهاب إلى القناة على Telegram

This channel helps you to create bots, learn to create bots and to accuire bjs codes. Discover special giveaways, exclusive free offers given by this channel. Support @FlashComSupport Partner : @SiyaBots

إظهار المزيد
879
المشتركون
لا توجد بيانات24 ساعات
-27 أيام
-2630 أيام
أرشيف المشاركات
📌 Old Name Detector Bjs Code❓ 🚀 Command : /start Wait for answer : ❌ 📜 Answer🛠️ BJS Code :
if (chat.chat_type !== "private") {
  var data = Bot.getProperty("data " + user.telegramid)

  if (data === undefined) {
    var currentData =
      user.first_name + "%29" + user.last_name + "%29@" + user.username
    Bot.setProperty("data " + user.telegramid, currentData, "string")
    return
  } else {
    var lastData = data.split("%29")
    var newData =
      user.first_name + "%29" + user.last_name + "%29@" + user.username

    if (data !== newData) {
      var message =
        "<b>⚠️ @admin, note this! One user currently in your chat changed their details.</b>\n\n📰<b>Last Details:</b>\n"

      message += "- " + lastData[0] + "\n"

      message += "- " + lastData[1] + "\n"
      message += "- " + lastData[2] + "\n"

      message += "\n<b>Current Details:</b> "

      if (user.first_name) message += "\n- " + user.first_name + "\n"
      if (user.last_name) message += "- " + user.last_name + "\n"
      if (user.username) message += "- @" + user.username

      Api.sendMessage({
        chat_id: chat.chatid,
        text:
          "" +
          message +
          "\n\n《<a href='tg://user?id=" +
          user.telegramid +
          "'>Permanent Link</a>》",
        parse_mode: "html"
      })
      Bot.setProperty("data " + user.telegramid, newData, "string")
    }
  }
}
⚡️Credits : @CodeUnknownCredits ⚡️Error Report : @FlashComBjsChat ⚡️ Official Channel : @flashcomofficial

📣 Task For Premium Members Please Boost Our Channel By Clicking To The Below Link In Order to Make Changes In Appearance etc... https://t.me/flashcombjs?boost This Will Be A Part Of Help Your Performing Towards Us!

📌 Vdhd BJS ❓ 🚀 Command : /Hdjdj Wait for answer : undefined 🛠️ BJS Code :
Hh
⚡️Posted on : @flashcombjs ⚡️Posted by : @FzLsPro ⚡️Credits : @ ⚡️Error Report : @flashcomofficialchat ⚡️ Official Channel : @flashcomofficial 🔴 Flag Post

📣 INTRODUCING GETMART BOT ✨️ This is an free bjs store bot which you can explore many bjs bots and you can install it to your bots.business account. ✨️ Explore the best bot templates from @GetMartBot and even stay tuned for more updates @FlashComBjs.

🚀 Command : /claim_rain Wait for answer : ❌ 📜 Answer🛠️ BJS Code :
var rain = Bot.getProperty(params)
if (!rain) {
  Bot.sendMessage("*Invalid Rain Id*")
  return
}
var amo = rain.per_mem
var us = rain.total_user
var cr = rain.rain_creator
var balance = Libs.ResourcesLib.userRes("balance")
var cur = Bot.getProperty("cur")
var mm = request.message.message_id
if (!user.username) {
  var usern =
    "<a href='tg://user?id=" +
    user.telegramid +
    " '>" +
    user.first_name +
    "</a>"
} else {
  var usern = "@" + user.username
}
var clm = Libs.ResourcesLib.anotherChatRes("ClaimerBhai", params)
var nn = Bot.getProperty("Claim_Rain" + params)

if (clm.value() == us) {
  var txt = cr + "  <b>🎁 Your Rain Claimed All Members.</>\n\n" + nn
  Api.editMessageText({
    message_id: mm,
    text: txt,
    parse_mode: "html"
  })
} else {
  var alr = User.getProperty("Already_Claim" + params)
  if (alr == "already") {
    Api.answerCallbackQuery({
      callback_query_id: request.id,
      text: "😅 You Have Already Claimed This Rain.",
      show_alert: true
    })
    return
  }
  Api.answerCallbackQuery({
    callback_query_id: request.id,
    text: "🥳 You Have Successfully Claimed Rain.",
    show_alert: true
  })
  clm.add(1)
  balance.add(+amo)
  Bot.editInlineKeyboard(
    [
      [
        {
          title: " Claim Rain (" + clm.value() + "/" + us + ")",
          command: "/Claim_Rain " + params
        }
      ]
    ],
    mm
  )
  if (nn == undefined || !nn) {
    var newh = "\n <b>" + clm.value() + ".</> " + usern + " "
    Bot.setProperty("Claim_Rain" + params, newh, "string")
  } else {
    var nwh = "\n <b>" + clm.value() + ".</> " + usern + " "
    var toal = nn + nwh
    Bot.setProperty("Claim_Rain" + params, toal, "string")
  }
  User.setProperty("Already_Claim" + params
⚡️Credits : @CodeUnknownCredits ⚡️Error Report : @flashcomofficialchat ⚡️ Official Channel : @flashcomofficial 🔴 Flag Post

📌 Rain Bjs Code❓ 🚀 Command : /rain Wait for answer : ❌ 📜 Answer🛠️ BJS Code :
if (chat.chat_type != "private") {
  function find() {
    Bot.sendMessage(
      "*😅 Incorrect Format use*\n\n[/rain] [Amount] [No. Of Users]",
      {
        is_reply: true
      }
    )
  }

  try {
    if (!params) {
    }
    let receive = params.split(" ")
    var amo = receive[0]
    var newamo = amo * 1
    var clus = receive[1]
    var totalamo = newamo * clus
    var cur = Bot.getProperty("cur")
  } catch (err) {
    find()
    return
  }
  if (newamo < 1) {
    return
  }
  if (amo.includes("-")) {
    return
  }
  if (amo.includes("+")) {
    return
  }
  if (amo.includes("×")) {
    return
  }
  if (amo.includes("÷")) {
    return
  }
  if (amo.includes(".")) {
    return
  }
  function isNumeric(n) {
    return !isNaN(parseFloat(n)) && isFinite(n)
  }

  if (!isNumeric(amo)) {
    return
  }

  if (!isNumeric(clus)) {
    return
  }
  if (clus >= 1 && clus <= 50) {
    let res = Libs.ResourcesLib.userRes("balance")
    var adm = Bot.getProperty("adminID")
    if (res.value() < totalamo) {
      Bot.sendMessage(
        "* Insufficient Balance!*_ Need atleast " +
          totalamo +
          " " +
          cur +
          "_\n\n* Your Balance:*_ " +
          res.value() +
          " " +
          cur +
          "_",
        { is_reply: true }
      )
      return
    }
    var rrid = generateCaptchaText(4)
    var rn = Libs.Random.randomInt(0, 999999)
    var rr = rrid + "" + user.id + "" + rn
    if (!user.username) {
      var usern =
        "<a href='tg://user?id=" +
        chat.chatid +
        " '>" +
        user.first_name +
        "</a>"
    } else {
      var usern = "@" + user.username
    }
    var st = { total_user: clus, per_mem: newamo, rain_creator: usern }
    Bot.setProperty(rr, st)
    Api.deleteMessage({ message_id: request.message_id })
    var usn = "<a href='tg://user?id=" + user.telegramid + " '>Your</a>"
    Api.sendMessage({
      text:
        " <b>🥳 Hurrah!</> " +
        usn +
        " Rain Has Been Successfully Made. \n\n<b>Per User Amount:</> " +
        newamo +
        " <b>" +
        cur +
        "</>\n\n<b> Total Claimer:</> " +
        clus +
        "",
      parse_mode: "html",
      reply_markup: {
        inline_keyboard: [
          [
            {
              text: " Claim Rain (0/" + clus + ")",
              callback_data: "/Claim_Rain " + rr
            }
          ]
        ]
      }
    })
    res.add(-totalamo)
  } else {
    Bot.sendMessage(
      "*Oh!* Something Went Wrong.\n\nYou Can Make Rain For Minimum *1 Member* And Maximum *50 Member*",
      { is_reply: true }
    )
  }
}

This will also contain codes

Should we open Bjs Bot Store ?
Anonymous voting

Should we open BJS Bots and TPY Bots Store ?
Anonymous voting

📌 Text to Telegraph (BJS).❓ 🚀 Command : /tele Wait for answer : ✔️ 📜 Answer*🧿 Enter a text to Upload on telegraph!* 🛠️ BJS Code :
if (!content) {
  //Made By @flashcombjs
  var url =
    "https://api.telegra.ph/createPage?access_token=39290dea4e906e932a0ed05dba7d03c73c2a02e5d856b34b1c1455adb3e6&title=Created+by+@" +
    bot.name +
    "&author_name=@" +
    user.username +
    "&content=[%7B%22tag%22:%22p%22,%22children%22:[%22" +
    encodeURIComponent(message) +
    "%22]%7D]&return_content=true"
  //Made By @flashcombjs
  HTTP.get({ url: url, success: "/tele" })
  return
}
//Made By @flashcombjs
let link = JSON.parse(content).result.url
Bot.sendMessage(link)
//Made By @flashcombjs
⚡️Posted on : @flashcombjs ⚡️Posted by : @CoderSwastik ⚡️Credits : @Swastik_Raj ⚡️Error Report : @flashcomofficialchat ⚡️ Official Channel : @flashcomofficial 🔴 Flag Post

Please Erase Your Email Once Sending Due to Security Purposes. Reason ? There is a reason behind and we cannot explain you but Incase if that affect you we are not responsible and not here please don't share anywhere keep it private and safe and make sure delete your email once sending.

🎉 Claim January Giveaway Bots Now ! Description : This is an special special giveaway as per you can see the replied post in this message or click here. This giveaway will be held each month sometimes or each years etc... So now claim the giveaway by following below instructions How to claim giveaways bots ❓ - Join @FlashComBjsChat. - Send #Jan24Flash your_bb_email ( eg : #Jan24Flash myemail@gmail.com ) - Send the message and once done a reply message will be sent from our bot. - Once the bot says that you have claimed all 4 bots then you have successfully claimed and if it says error please report it to us. - Go check your provided email bb account. - That's All. 😜 Stay tuned for more giveaways soon

FlashCom - BJS Codes / Bots: 🎉 Special Plans 🔊 As per 2024 January has arrived we have decided to give some special bjs bot giveaways. So the upcoming bot giveaways you can see it below. 🚀 Upcoming Giveaways Planned ? -- Trx Auto Pay Bot -- Temporary Mail Generator Bot -- Smm Panel Bot -- Crypto Converter CC Bot 😜 Stay Tuned Till You Get The Above Special Giveaways. Thanks, FlashCom Team.

🎉 Special Plans 🔊 As per 2024 January has arrived we have decided to give some special bjs bot giveaways on bjs. So the upcoming bot giveaways you can see it below. 🚀 Upcoming Giveaways Planned ? -- Trx Auto Pay Bot -- Temporary Mail Generator Bot -- Smm Panel Bot -- Crypto Converter CC Bot 😜 Stay Tuned Till You Get The Above Special Giveaways. Thanks, FlashCom Team.

Please Ensure Explore Your Ideas Now ! 🛠 Just Comment Us On @FlashComOfficial Chat By Tagging @admin What Codes & Bots You Need Just Give us an Idea ! Thank You, FlashCom Owner #FlashExplore

Please Ensure Explore Your Ideas Now ! 🛠 Just Comment Us Down What Codes & Bots You Need Just Give us an Idea ! Thank You, FlashCom Owner #FlashExplore

Need name detector bjs bot?

📌 Random shlok from Bahgavad Gita Bjs❓ 📃 Read random shlokas from bhagavad gita using the bot BJS code 🚀 Command : /start Wait for answer : ❌ ⚒ BJS code : Bot.sendMessage("Use /shlok command to get a random shlok from Bahgavad Gita!"); 🚀 Command : /shlok Wait for answer : ❌ ⚒ BJS code : HTTP.get({   url: "https://shloka.onrender.com/api/v1/bahgavad_gita/random",   success: "/next" }); 🚀 Command : /next Wait for answer : ❌ ⚒ BJS code : const jsonData = JSON.parse(content); const verseNumber = jsonData["Verse No"]; const shloka = jsonData.Shloka; const translation = jsonData["English Translation"]; const explanation = jsonData.Explanation; const chapter = jsonData.Chapter; Bot.sendMessage("*Chapter*: "+chapter+"\n*Verse*: "+verseNumber+"\n*Shloka*: "+shloka+"\n*Translation*: "+translation+"\n*Explanation*: "+explanation+"" ); ⚡️Posted By: @shlokbundele ⚡️Credits: @sarozpaudel | @shlokbundele ⚡️Error Report: @flashcomofficialchat ⚡️Official Channel: @flashcomofficial

📌 Notes | Music Finder BJS Bots ❓ ⭐️ This is an giveaway. 📃 Description : Notes Bot is used to create, edit and delete note
📌 Notes | Music Finder BJS Bots ❓ ⭐️ This is an giveaway. 📃 Description : Notes Bot is used to create, edit and delete notes which will be helpful you to save something where you can get it back. Music Finder Bot helps you to find music which you want and send the suggested music to you. How to get the above mentioned bots to my bb account ❓ - Send your bots.business email by asking for those bots to @FlashComSupport. 🗓 Valid Till :  05/01/2024 ⚡️ Credits ➡️ Those bots are not made by us and i got it from somewhere and i am providing it to you if you need more to read about this please read the unknown credits text.