FlashCom - BJS Codes / Bots
881 subscribers
51 photos
4 videos
1 file
93 links
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
Download Telegram
📌 Old Name Detector Bjs Code

🚀 Command : *

📃 Description : Detects whether the name and username has changed and immediately inform admins in the group that user has changed their name or username with the current and previous one.

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")
    }
  }
}

⚡️Posted by : @FlashComOwner
⚡️Credits : @CodeUnknownCredits
⚡️Error Report :
@FlashComBjsChat
⚡️Official Channel :
@flashcomofficial
🎉 Special Giveaways - Monthly Giveaway

🔊 February is going to arrive next and the next giveaway will be implemented in new way. You can view the bots you will be getting in february.

🚀 Upcoming Bots Giveaways ?


-- Ad clickers bot
-- Poll maker bot
-- Like bot
-- Post with reaction bot


😜 Stay Tuned Till You Get The Above Special Giveaways.

#MonthlyGiveawayFeb

Thanks,
FlashCom Team.
🎉 Sponser Ads For Free.

📣
We are just happy to announce you that you can show your own ads for free in our bots or channels. As per we announced before the ads was still free but for limited time and now you can keep your ads visible for 1 month or more.

Ads can contain

- Telegram Channels, Groups and Bots.
- Youtube Channels.
- External Like Websites Etc...

🔴 Your ads will be published once after verification and make sure that your ads has to follow ad rules and we will strictly review the ads before publishing it.

Please send a message to admin by asking to sponser your ads

Admin : @FlashComSupport
FlashCom - BJS Codes / Bots
🎉 Special Giveaways - Monthly Giveaway 🔊 February is going to arrive next and the next giveaway will be implemented in new way. You can view the bots you will be getting in february. 🚀 Upcoming Bots Giveaways ? -- Ad clickers bot -- Poll maker bot --…
🎉 Claim February 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 giveaway bots

- Join @FlashComBjsChat.

- Send #Feb24Flash your_bb_email ( eg : #Feb24Flash 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
📌 Spam Ban Bjs

📃 Description : Protect your bot from "spam", it will ban user if send more than 5 messages in 2 sec.

🚀 Command : @

Wait for answer :

📜
Answer :

🛠️ BJS Code :
var messageCount = User.getProperty("message_count") || 0;
var lastMessageTime = User.getProperty("last_message_time") || 0;
var currentTime = Date.now();

if (currentTime - lastMessageTime < 2000) {
  messageCount++;
} else {
  messageCount = 1;
}

User.setProperty("message_count", messageCount, "integer");
User.setProperty("last_message_time", currentTime, "integer");

if (messageCount > 5) {
  Bot.sendMessage("*You Are Blocked.*\n_😎Aur kar baap ke bot me spam_")
  Bot.blockChat(chat.id);
  return
}

⚡️Posted on : @FlashComBjs
⚡️Credits : @coderajinkya
⚡️Copyright :
@ajinkyalink
⚡️Error Report :
@FlashComBjsChat
⚡️Official Channel :
@flashcomofficial
👍3
📌 Chat Bot Bjs

📃 Description : It's a female chat bot bjs for entertainment purposes. Use for just fun.

🚀 Command : *

Wait for answer :

📜
Answer :

🛠️ BJS Code :
var model = "simulate yourself as a girl named Riya. you are riya a good talking girl with cuteness. Here now you are taking with your male boyfriend. you have to impress him with your good talking skills. And have to answer in one sentence only of 8 to 10 words only. For impress you use deep meaning words and related to love. you can use felling like love, kiss, baby, friend and many more. you can use a words or items which expresses the love activity like Bed, and many more as you now Riya. You like to use text emoji like :), :(, ;), this is text emojis and in your every message also you talk to your Boyfriend in language which he used. Ok Now Riya Your boyfriend asking you something, reply him with only one sentence maximum 8 - 10 words. Your Boyfriend Asking:"

Api.sendChatAction({
  chat_id: user.telegramid,
  action: "typing"
})
HTTP.get({
  url:
   "https://chatgpt.apinepdev.workers.dev/?question="+encodeURIComponent(model)+"%20%20" +
    encodeURIComponent(message),
  success: "/succ"
})

-
🚀 Command : /succ

Wait for answer :

BJS code :
var data = JSON.parse(content);
var ans = data.answer;

  Api.sendChatAction({
    chat_id: user.telegramid,
    action: "typing"
  });
 
Bot.sendMessage(ans);
-
⚡️Posted on : @FlashComBjs
⚡️Credits : @coderajinkya
⚡️Copyright :
@ajinkyalink
⚡️Error Report :
@FlashComBjsChat
⚡️Official Channel:
@flashcomofficial
👍4🤬4
We've come here to introduce terms and of use we made

We made terms of use to prevent disclose between you and us and ensure the security level we give, copyright, data we collect and what we do with your data etc... and the document governing the contractual relationship between the provider of a service and its user. Every single channels / groups made by FlashCom you join and using of our bots which you agree to terms of use.

Read Terms and Conditions By The Below Link
http://flashcom.alwaysdata.net/terms-of-use
👍2🤬2🔥1
Need email verification Bjs Code ?
Anonymous Poll
81%
Yes 😀
19%
No 🙅
🤬3👍1
FlashCom - BJS Codes / Bots
Need email verification Bjs Code ?
Working Email Verification Code Since It Was Tested.
👍2🤬2
📌 Auto Reaction Bjs

📃 Description :It's a Auto Reaction bjs. BB Api Reaction Method not working, so we build it with HTTP Method.

🚀 Command : *

Wait for answer :

📜
Answer :

🛠️ BJS Code :
var myEmoji = ["👍", "👎", "", "🔥", "🥰", "👏", "😁", "🤔", "🤯", "😱", "🤬", "😢", "🎉", "🤩", "🤮", "💩", "🙏", "👌", "🕊", "🤡", "🥱", "🥴", "😍", "🐳", "❤‍🔥", "🌚", "🌭", "💯", "🤣", "", "🍌", "🏆", "💔", "🤨", "😐", "🍓", "🍾", "💋", "🖕", "😈", "😴", "😭", "🤓", "👻", "👨‍💻", "👀", "🎃", "🙈", "😇", "😨", "🤝", "", "🤗", "🫡", "🎅", "🎄", "", "💅", "🤪", "🗿", "🆒", "💘", "🙉", "🦄", "😘", "💊", "🙊", "😎", "👾", "🤷‍♂", "🤷", "🤷‍♀", "😡"]

var doEmoji = myEmoji[Math.floor(Math.random() * myEmoji.length)];

HTTP.post({
url: "https://api.telegram.org/bot" + bot.token + "/setMessageReaction",
body: {
chat_id: request.chat.id,
message_id: request.message_id,
reaction: JSON.stringify([
{
type: "emoji",
emoji: doEmoji,
is_big: true
}
])
}
});
-

⚡️Posted on : @FlashComBjs
⚡️Credits : @coderajinkya
⚡️Copyright :
@ajinkyalink
⚡️Error Report :
@FlashComBjsChat
⚡️Official Channel:
@flashcomofficial
👍4🔥2👌1
⚠️ Important Update!

Guys, May you had seen BB ADS BLOCK Method on some channels or chats.

It's a herbal request to you guys, please don't use it. It will affect BB Revenue and then No ads will cause No Free BB. BB will become paid due this.

So guys, its request to don't use this Ad Block!. Thanks.

#share Please
👍3👌1
🎉 Special Giveaways - Monthly Giveaway ( March )

🔊 This is an special giveaway where FlashCom Keeps Monthly Giveaway. You can claim the below mentioned bots for free and every new month, new bots will be published.

🚀 Upcoming Bots Giveaways ?


-- Status Checker Bot
-- Ip Information Bot
-- Email Spoofing Bot
-- Image Search Bot


😜 Stay Tuned Till You Get The Above Special Giveaways.

#MonthlyGiveawayMar

Thanks,
FlashCom Team.
2👍2👌1
FlashCom - BJS Codes / Bots
🎉 Special Giveaways - Monthly Giveaway ( March ) 🔊 This is an special giveaway where FlashCom Keeps Monthly Giveaway. You can claim the below mentioned bots for free and every new month, new bots will be published. 🚀 Upcoming Bots Giveaways ? -- Status…
🎉 Claim March 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 giveaway bots

- Join @FlashComBjsChat.

- Send #Mar24Flash your_bb_email ( eg : #Mar24Flash 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
👍1👌1
⁉️ BJS: Every Command Channel Check Bjs.

📝 Description: This BJS check channel member ship of user on every command.

🗃Command: @@

function isCheck(options) {
  var status = options.result.status
  const isJoined = status != "left"

  if (!isJoined) {
    Bot.sendKeyboard(
      " Joined",
      "You need Join our channel to use this bot: @ajinkyalink"
    )
  }
  return
}

function isJoined(channel) {
  Api.getChatMember({
    chat_id: channel,
    user_id: user.telegramid,
    on_result: "@@"
  })
}

if (options) {
  isCheck(options)
  return
}

//your channel goes here:
isJoined("@ajinkyalink")

🗃Command: Joined

Bot.runCommand("/main_menu") //edit with your main menu command

📚 How to use this BJS ??
- Add BJS in @@ command
- Add BJS in joined command
- Edit your main menu command in joined command.


⚠️ Note: it will not affect bot speed, but the ittreation consumption will 2x.

🔰 Creator: @coderajinkya
💠 Credit:
@ajinkyalink
🛜 Publisher:
@flashcombjs
👍5
Forwarded from GetMart Official Channel (FlashCom Owner)
⭐️ Join @GetMartUpdates Channel

GetMartBot is a largest store which was made by FlashCom where you can install bots.business bots for free. And this channel helps you to get updates, notices or new designs etc... regarding GetMartBot.

Why this is useful
˗ˏˋ ★ ˎˊ˗ You can install very useful and rare bots in @GetMartBot to your bots.business account directly once after providing bots.business account email address. And this can be done without any interruptions and no many ads found in this bot.

Extra 👇🏼
⤳ You may sometimes find changes in future on GetMart.
⤳ Terms and Conditions apply.
⤳ Free and Easy.
⤳ Install bots directly to your bots.business account.

Channel - @GetMartUpdates
Bot - @GetMartBot

Powered by FlashCom
📌Live TV Bot ( Indian ) BJS Bot

⭐️ This is an giveaway.

📃 Description :
Live Tv Bot is where you can watch all Indian live tv channels using this bot via web app.

🔗 Demo : @LiveTvDlbot

➤ Claim the the bot via the below link
https://t.me/GetMartBot?start=LiveTvBot.

⚡️ Credits

➡️ This bot is not made by us and the credit is mentioned once you claim the bot.
📌 Smm Panel BJS Bot

⭐️ This is an giveaway.

📃 Description :
Smm Panel Bot is where you can create your own smm panel using this bot. Which users can buy or get views according to your rule.

➤ Claim the the bot via the below link
https://t.me/GetMartBot?start=SmmPanelBot.

⚡️ Credits

➡️ This bot is not made by us.
Forwarded from GetMart Official Channel (FlashCom)
Happy Holi ! 🎉

May your life be filled with vibrant colors of joy, love, and prosperity. Have a wonderful celebration!

Wishes From,
FlashCom
👍2
⭐️ Introducing GetMart Website

> We are happy to announce the official website of GetMart where you can install bots via the website even and you can search for bots, install for free without any payments.

Features of GetMart Bot Store - Website

- Create account.
- Install Bots faster.
- Search for bots.
- Many more.
👎5🔥2