FlashCom - BJS Codes / Bots
882 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
πŸ“Œ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
FlashCom Official Channel
⭐️ 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…
There is an security issue going on,
This is due to a problem in SSL Certificate.

Please be patient till we fix it since chrome or other is blocking our website from entering. Please wait till we solve this.
Eid Mubarak 🀝

> This wishes is from FlashCom. May all the light of heaven shine on you and your loved ones this Eid and Honor yourself and your sacrifices this Eid.

Thank you,
πŸ”₯3πŸ‘2🀝2
FlashCom - BJS Codes / Bots
What code do you need next on email sending ?
πŸ“Œ Send Some Telegram Details To User Via Email They Provide Using Api Bjs ❓

πŸ“ƒ Description : This method is used to send some user details to their email address which they provide.

πŸš€ Command : /start

Wait for answer : βœ…

πŸ“œ
Answer : Send me your Gmail address to send your details

πŸ›  BJS Code :

HTTP.post({ url: "https://gmailapi.vercel.app", success: "onsuccess", body: { sender: "your_email_address", password: "your_app_password", recipient: message, subject: "Your Telegram Details", message: "Hey, Your Details Can be Seen Below <br><b>Telegram ID :</b> `"+user.telegramid+"`<br><b>Telegram Name :</b> `"+user.first_name+ ""+user.last_name+"` <br><b>Telegram UserName :</b> `@"+user.username+"` <br><b>Telegram User ID :</b> `"+user.userid+"`" } })


Important steps to make the above code work❓
- First replace your email in the field of your_email_address.
- Create an app password for the above email address and replace it in your_app_password. ( See below on creating app password )
- Thats All.

How to create app password❓
- Read the below tutorial which is made by Jobians Techie.

- Click here to read tutorial on creating app password

⚑️Posted on : @FlashComBjs
⚑️Copyright :
@FlashComBjs, @jobianstechie
⚑️Error Report :
@FlashComBjsChat
⚑️Official Channel:
@flashcomofficial
πŸ‘4
Forwarded from GetMart Official Channel (FlashCom)
⭐️ Introducing FlashCom Official Chat Group

This channel is built for discussing issues, topics, and other related to FlashCom channels, bots, groups or programming etc... And even you can request help from admins and users.

🀝 We request you to join the group by clicking the below button.
πŸ“Œ GitHub Repo To Zip File ❓

πŸ“œ Convert github repo to zip file with the bot and download it as a zip.

πŸš€ Command : *

πŸ›  BJS Code :
link = message

download_link = ""+link+"/archie/refs/heads/master.zip"

caption = "πŸ“‚ GitHub Repository ZIP File\n\n[Click here to download ZIP file](""+download_link)\n\nπŸ‘¨πŸ’» Devloper : [Ashish](https://t.me/Aashish2808)"

button = [[{text: "Download ZIP πŸ“₯", url: ""+download_link}],[{text: "Devloper πŸ‘¨πŸ’»", url: "https://t m/Aashish2808}]]

Api.sendDocument({document: ""+download_link, caption: caption, parse_mode:"Markdown",reply_markup:{inline_keyboard:button}})
⚑️Posted on : @flashcombjs
⚑️Credits :
@Aashish2808
⚑️Error Report :
@flashcombjschat
⚑️ Official Channel :
@flashcomofficial
πŸ’‘ Suggest Me Some Idea In Comments.

🧐 What Should I Make Next?
πŸ“Œ Inline Keyboard with edit❓

πŸ“œ Create a text with inline keyboard button and when User click the button then the text with inline keyboard will be edited.

πŸš€ Command : /inline

πŸ›  BJS Code :
let msg = "πŸ‘‹ Hello,\n\nWelcome to ny bot and you can add your text by replacing from the hi emoji to here ";
let keyboard = [
[{ text: "Command Inline 1", callback_data: "/callbackcommand1" },{ text: "Command Inline 2", callback_data: "/callbackcommand2" }],[{ text: "Url ", url: "https://google.com" }]
];
if (!request.data) {
  Api.sendMessage({
    text: msg,
    parse_mode: "markdown",
    disable_web_page_preview: true,
    reply_markup: {
      inline_keyboard: keyboard
    }
   });
} else {
  Api.editMessageText({
    message_id: request.message.message_id,
    text: msg,
    parse_mode: "markdown",
    disable_web_page_preview: true,
    reply_markup: {
      inline_keyboard: keyboard
    }
  });
  }

πŸš€ Command : /editedinline

πŸ›  BJS Code :
Api.editMessageText({
  message_id: request.message.message_id,
  text: "Your edit message here",disable_web_page_preview: true,
  parse_mode: "markdown",   reply_markup: {
    inline_keyboard: [
[{ text: "πŸ”™ Back", callback_data: "/start"}]
    ]
  }
});

⚑️Posted on : @flashcombjs
⚑️Credits :
@CodeUnknownCredits
⚑️Error Report :
@flashcombjschat
⚑️ Official Channel :
@flashcomofficial
πŸ†5πŸ‘3
Need Bulk Poster Bot ?
Anonymous Poll
80%
Yes πŸ˜€
20%
No πŸ™…
πŸ“Œ Fully Advance And 100% Working BJ's To Do Ad(s) For Your Bot . ❓

πŸ“œ From this code you can send your own ads to your bot.

πŸš€ Command : /start

πŸ›  BJS Code :
var ads = Bot.getProperty("Ads System") ? Bot.getProperty("Ads System") : []

if (!ads.includes(user.telegramid)) {
ads.push(user.telegramid)
Bot.setProperty("Ads System", ads, "json")
}

//Put In /start BJ's On The Top

πŸš€ Command: /doads ( Your Choice )

πŸ›  BJS Code :
var ads = Bot.getProperty("Ads System")

for (var i in ads) {
Api.sendMessage({
chat_id: ads[i],
text: "<b>πŸ‘‹ Hello This Is A Testing</>", // customised it also
parse_mode: "html"
})
}
Bot.run({
command: "/doads",
run_after: 14400 //time in second
})

πŸš€ Command: /offads (If You Want To Stop The Ads.)

πŸ›  BJS Code :

Bot.clearRunAfter()
Bot.sendMessage("All Ads cleared.")

⚑️Posted on : @flashcombjs
⚑️Credits : @Abhishek_Back
⚑️Error Report : @flashcombjschat
⚑️ Official Channel : @flashcomofficial
πŸ‘4πŸ‘Œ2🀝2⚑1
πŸ’‘ Suggest Me Some Idea In Comments.

🧐 What Should I Make Next Code ?
πŸ”₯4πŸ‘1
πŸ“Œ Inline Pixabay Photo's Search Bjs . ❓

πŸ“œ You can search pixabay photo's through inline.

πŸš€ Command : /start

πŸ›  BJS Code :
var inline_keyboard = [
 
    [{ text: "Go inline here", switch_inline_query_current_chat: "" }],
    [{ text: "Go inline in another chat", switch_inline_query: "" }]
 
]

var buttons = { inline_keyboard: inline_keyboard }
Api.sendMessage({ text: "Hy "+user.first_name+".\nI am simple photo search bot. \nI fetch images from pixabay api.", reply_markup: buttons })


πŸš€ Command : /inlineQuery

πŸ›  BJS Code :
if (!request.query) {
  return
}
let query=request.query
let text=query.replace(/\s/g, "%20");
HTTP.get({ url: "https://pixabay.com/api/?key=36545097-d5df6c20dfd41fe6ace3f8fa0&per_page=50&q="+text, success: "/onLoading "+request.id })


πŸš€ Command : /onLoading

πŸ›  BJS Code :
var hits = JSON.parse(content).hits
var results = []

for (let i = 0; i < hits.length; i++) {
  results.push({
    type: "photo",
    id: hits[i].id,
    thumbnail_url: hits[i].previewURL,
    photo_url: hits[i].webformatURL,
    photo_width: hits[i].webformatWidth,
    photo_height: hits[i].webformatHeight
  })
}

Api.answerInlineQuery({
  inline_query_id: params,
  results: results
})


⚑️Posted on : @flashcombjs
⚑️Credits : @CoderUnknownCredits
⚑️Error Report : @flashcombjschat
⚑️ Official Channel : @flashcomofficial
⚑️ Happy 1st Anniversary Of FlashCom

✀ FlashCom was found in may 09 2023 and today is may 08 2024 where FlashCom reach one year as now it is 1st anniversary of FlashCom

✀ Almost in this date FlashCom has reached an year, A today is FlashCom anniversary, I want to extend my deepest appreciation for your unwavering support. Your commitment to our shared vision has contributed significantly to our growth and accomplishments.

✀ FlashCom is made in order to help you in creating telegram bots, acquiring bots etc... as it is now. We may expand this in future. We even try to fulfill your requests about bots and we have fulfilled some of users needs of helps. FlashCom might help you a lot where we have posted may codes to develop bots and made bots where you can install bots as free.

✀ FlashCom is free for every single user. As we do not collect payments from any user for any reason. FlashCom was brought up in firm where there was several consequences has to be faced during the growth of FlashCom. FlashCom has failed too many times. We did not give up even it was failing we started continuing this channel as we did not give-up and now FlashCom has gained a better results than before. Even now there are consequences we face we are still overcoming with those consequences in order to keep this channel exist in future as well.

➣ Thanking Admins

✀ We thank admins of FlashCom for their hard work and commitment to the company are truly inspiring and here’s to another great year which you may do as well you did before. FlashCom has been grown and your part of it helping FlashCom extend to different users.

➣ Thanking Users

✀ We’re elated to have you on our channel as member. We will continue FlashCom and FlashCom will provide you useful codes and bots which will benefit you. We even thank you again because of you only FlashCom exists as you are a member of this channel and you may help members of FlashCom and us! We thank you a lot for your assist.


✀ We will try 0ur best in order to keep this channel continuing and we need your support for this. Introduce this channel to your friends , users who is finding channels in order for creating of bots, assistance etc... Just help him by introducing this channel and this is an help your doing to FlashCom as well which your helping to expand FlashCom.
πŸ”₯4
πŸ“Œ Automatically Bonus for Every Mouth Bjs. ❓

πŸ“œ This Code Allows user to get Bonus each month Automatically.

πŸš€ Command : @

πŸ›  BJS Code :

function canRunMonthlyBonus() {
var last_bonus_date = User.getProperty("last_bonus_date");
if (!last_bonus_date) {
return true;
}

var last_bonus_month = new Date(last_bonus_date).getMonth();
var current_month = new Date().getMonth();

if (last_bonus_month === current_month) {
return false; // Monthly bonus already given this month
}

return true;
}

if (!canRunMonthlyBonus()) {
return;
}

User.setProperty("last_bonus_date", Date.now(), "integer");

let bonus_amount = 500;
let balance = Libs.ResourcesLib.userRes("balance");
balance.add(bonus_amount);

Api.sendMessage({
chat_id: user.telegramid,
text: "Congratulations! You have received a monthly bonus of " + bonus_amount + " points.",
parse_mode: "HTML"
});


⚑️Posted on : @flashcombjs
⚑️Credits : @mrx605Tz
⚑️Error Report : @flashcombjschat
⚑️ Official Channel : @flashcomofficial
⚑2πŸ‘2
πŸ“Œ Membership checker through HTTP method Bjs❓

πŸ“œ
This code allows to check whether user is a member of your chat and if they are then they can proceed to command or bot will ask to join channel if they run that specific command

Libraries Needed
-- Membership checker lib

πŸš€ Command : /start

πŸ›  BJS Code :
var channel = "@flashcombjs //replace your channel username"
HTTP.get({
    url: "https://api.telegram.org/bot"+bot. token+"/getChatMember?chat_id="+channel+"&user_id="+user.telegramid+"",
    success: "/check"})


πŸš€ Command : /check

πŸ›  BJS Code :
var info = JSON.parse(content)
var status = info.result.status
if ((status == "member") | (status == "administrator") | (status == "creator")) {
  Bot.runCommand("/command")
}
if (status == "left") {
  Bot.sendMessage("Must join channel") // your force join massage
}


⚑️Posted on : @flashcombjs
⚑️Credits :
@CodeUnknownCredits
⚑️Error Report :
@flashcombjschat
⚑️ Official Channel :
@flashcomofficial
πŸ‘2
πŸ“Œ IP verification Checker ( API ) Bjs❓

πŸ“œ
This code allows you to prevent users using VPN and multiple accounts in your bot. Only one account can be used.

Libraries Needed
--  Webhooks

πŸš€ Command : /start

πŸ›  BJS Code :
var verify = User.getProperty("verify")
if(verify){
Bot.runCommand("/start2")
return}

var url2 = Libs.Webhooks.getUrlFor({
command: "onWebhook",
user_id: user.id
})

var webPage = "https://api.jobians.top/captcha/verify?webhookUrl=" + encodeURIComponent(url2)

Bot.sendMessage("ℹ️ [Please Verify Yourself By Clicking This Link\n⚠️ Don't Use VPN]("+webPage+")",{ disable_web_page_preview: true })


πŸš€ Command : onWebhook

πŸ›  BJS Code :
if (!content) {
return
}
var data = JSON.parse(content)
var ip = data.results.ip.split(".").slice(0,3).join(".")
var captcha = data.results.captcha
var vpn = data.results.vpn

var verify = User.getProperty("verify")
if(verify){
return}

if(vpn == "yes"){
Bot.sendMessage("🚨 You Are Ban For Using VPN!")
Bot.blockChat(chat.id);
return}

var ips = Bot.getProperty("ips", { list: {} })
if(ips.list[ip]){
Bot.sendMessage("❌ You Have Been Banned For Using Multiple Account");
Bot.blockChat(chat.id);
return
}

if(captcha == "ok"){
var ips = Bot.getProperty("ips", { list: {} });
ips.list[ip] = true;
Bot.setProperty("ips", ips, "json");
Bot.sendMessage("βœ… You Are Verified Now");
User.setProperty("verify","ok","string")
Bot.runCommand("/start2")
}

⚑️
Posted on : @flashcombjs
⚑️Credits :
@CodeUnknownCredits
⚑️Error Report :
@flashcombjschat
⚑️ Official Channel :
@flashcomofficial
πŸ‘2