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
Start & Stop Bot without BB Account [Using API key & Bot ID] Bjs

🚀 Command: /startbot
Bjs code:
HTTP.post( {
    url: "https://api.bots.business/v1/bots/" + message + "/status?api_key=[YOUR_BB_API_KEY]",
    success: '/start ',
    body: {status: "start_launch"}
  } )
Bot.sendMessage("Bot is online")


🚀 Command: /stopbot
Bjs code:
HTTP.post( {
    url: "https://api.bots.business/v1/bots/" + message + "/status?api_key=[YOUR_BB_API_KEY]",
    success: '/start ',
    body: {status: "start_stopping"}
  } )
Bot.sendMessage("Bot is offline")


⚡️ Posted by: @shlok_bundele
⚡️ Credits: @GainerZYZ
⚡️ Error Report: @flashcomofficialchat
⚡️ Official Channel: @flashcomofficial
👍3
Forwarded from Cubex Movie
#Ads

Finding to Get Games at a Least Price

You may Join the WhatsApp group look for the games you want by purchasing it for a least price. You may read the group instructions or the post to find how to purchase the specific game ?

Discover many games you want.

WhatsApp Group :
https://chat.whatsapp.com/FbB41k4mgSyGb3PbWZhqIG

Share this link with your family members and friends 🤝🫶🏻

Thank you 😊

This is an ad of Dvd Hut Of Sri Lanka Where You Will Be Able to Purchase Games At a least Price. Supported currencies can be discussed by the specific game providers of the WhatsApp Group

Q.A. I'd : 19839292
Report Ad

#ADS
Talk with admin bot like livegram BJS

🚀 Command: *
BJS code:
// Change your chat ID here.
Bot.setProperty("id", 1272403758);

var admin = Bot.getProperty("id");
if (request.reply_to_message && user.telegramid == admin) {
var fromchatid = user.telegramid;
var fromsgid = request.message_id;
var id_sup = Bot.getProperty("id_sup");
var msg = message;

Api.forwardMessage({
chat_id: id_sup,
from_chat_id: admin,
message_id: fromsgid
});
}

Bot.setProperty("id_sup", user.telegramid);
var fromchatid = user.telegramid;
var fromsgid = request.message_id;

if (request.forward_from) {
var fromchati = request.forward_from.id;
var fromsgi = request.message_id;
}

if (request.forward_from_chat) {
var fromchatid = request.forward_from_chat.id;
var fromsgid = request.forward_from_message_id;
}

Api.forwardMessage({
chat_id: admin,
from_chat_id: fromchatid,
message_id: fromsgid
});


⚡️ Posted by: @shivamb311
⚡️ Credits: @shivamb311
⚡️ Error Report: @flashcomofficialchat
⚡️ Official Channel: @flashcomofficial
👍2
FlashCom - BJS Codes / Bots pinned «Talk with admin bot like livegram BJS 🚀 Command: * BJS code: // Change your chat ID here. Bot.setProperty("id", 1272403758); var admin = Bot.getProperty("id"); if (request.reply_to_message && user.telegramid == admin) { var fromchatid = user.telegramid;…»
Forwarded from GetMart Official Channel (FlashCom)
Explore the best bots you want !

From @QiraOfficial telegram channel you can explore bots & it's updates which will be useful for you....
Ban user in bot BJS

🚀 Command: /ban
📝 Answer: Send the user's ID to ban them.
🛠️ BJS:
var key = "your_id_here";
if (user.telegramid == key) {
Bot.setProperty("" + message + "", "ban", "string");
Bot.sendMessage("User " + message + " has been banned successfully.");
} else {
return;
}

📌 Wait for an answer: On

🚀 Command: /unban
📝 Answer: Send the user's ID to unban them.
🛠️ BJS:
var key = "your_id_here";
if (user.telegramid == key) {
Bot.setProperty("" + message + "", "unban", "string");
Bot.sendMessage("User " + message + " has been unbanned successfully.");
} else {
return;
}

📌 Wait for an answer: On

🚀 Command: @
🛠️ BJS:

let stat = Bot.getProperty("" + user.telegramid + "")
if (stat == "ban") {
Bot.sendMessage("You have been banned by the admin.");
return;
}

📌 Wait for an answer: Off


📋 Note: Change admin id with key.

Posted by : @shlok_bundele
Credits : Unknown
Error Report :
@flashcomofficialchat
Official Channel : @flashcomofficial
16🤩13🔥12👍10👏9🥰8
Instagram Reel Downloader Bot Bjs

🚀 Command: *
Bjs code:
if(message.startsWith("https://www.instagram.com/")){
var apiUrl="https://nodejs-1xn1lcfy3-jobians.vercel.app/v2/downloader/instagram?url="+message

HTTP.get({
   url:apiUrl,
   success:"/success"
  
   })


  }else{
  Bot.sendMessage("enter a valid insta url")
 
  }


🚀 Command: /success
Bjs code:
var response=JSON.parse(content)
if(response.status==false){
  return Bot.sendMessage("Some error occurred ! ")
 
  }

var media =response.data
for(let i=0;i<media.length;i++){
  Api.sendDocument({ document: media[i].url })
  }


⚡️Posted by: @shlok_bundele
⚡️Credits: @sarozpaudel
⚡️Error Report: @flashcomofficialchat
⚡️Official Channel: @flashcomofficial
👎3👍2
User information Bjs

🚀 Command: /info
Bjs code:
Api.getUserProfilePhotos({
user_id: user.telegramid,
on_result: "onGetProfilePhotos"
});


🚀 Command: onGetProfilePhotos
Bjs code:
var userInfo=request.from
var text="<b>First Name</b> : "+userInfo.first_name+(userInfo.last_name ? "\n<b>Last Name</b> : "+userInfo.last_name :"" )+"\n<b>Telegram Premium</b> : "+(userInfo.is_premium ? "Yes ":"No ")+"\n<b>ID</b> : "+userInfo.id+""+"\n<b>UserName</b> : "+(userInfo.username ?"@"+userInfo.username:"🚫")
if(!options.ok){
return Bot.sendMessage("Error!");
}

if(options.result.total_count==0){
Bot.sendMessage(text)
return
}

let photos = options.result.photos;

Api.sendPhoto( { photo: photos[0][0].file_id ,caption:text,parse_mode:"html"} );


⚡️Posted by: @shivamb311
Credits: @sarozpaudel
⚡️Error Report: @flashcomofficialchat
⚡️Official Channel: @flashcomofficial
👍1
Broadcast message Bjs

🚀 Command: /broadcast
📌 Answer: Enter your message for broadcast.
🔰 Wait for answer: On
Bjs code:
if(user.telegram!="1272403758"){return}

Bot.sendMessage("Message sent to all users")

Bot.runAll({
command: "/message",
options: {chat_id: request.chat.id,message_id: request.message_id}
})


🚀 Command: /message
🔰 Wait for answer: Off
Bjs code:
Api.copyMessage({
chat_id: user.telegramid,
from_chat_id: options.chat_id,
message_id: options.message_id,
})


Note: Must edit the admin id with your telegram id.

⚡️Posted by: @shivamb311
Credits: unknown
⚡️Error Report: @flashcomofficialchat
⚡️Official Channel: @flashcomofficial
👍3
📢 Wish to be a part of our team ?

✴️ We need people to post codes, giveaways etc... To our made channels and for free.

If your willing to become a member of our team then please make sure contact @FlashComSupport

Due Data : 23/11/2023 ( Make sure send a message to the particular account mentioned above before the due Data by asking to become a part of our team )

Requirements

1. BJS
2. TPY
3. Group Management
4. Channel Checker

You may select a topic and request from the above mentioned account.

Hurry Up Only 1 Will Be Selected Each Of The Above Mentioned Requirements

Thanks,
👍1
FlashCom - BJS Codes / Bots
📢 Wish to be a part of our team ? ✴️ We need people to post codes, giveaways etc... To our made channels and for free. If your willing to become a member of our team then please make sure contact @FlashComSupport Due Data : 23/11/2023 ( Make sure send…
Two has been already selected as a member of the particular channel / group now only another two are available

Available Requirements

1. BJS
2. Channel Checker

Now Soon Become a Member Of Our Team By Messaging @FlashComSupport By Sending any of the above available requirements or even you can select two
🔥1
📌 Inline Keyboard BJS

🚀 Command : /start

nWait for answer :

🛠️ BJS Code : var buttons = [
{title: "Go to Google", url: "https://google.com"},
{title: "Call command for Button1", command: "/touch Button1" },
{title: "Call command for Button2", command: "/touch Button2" }
];

Bot.sendInlineKeyboard(buttons, "Please make a choice. After that, another command /touch will be started with parameters");


⚡️Posted on : @flashcombjs
⚡️Posted by : @HelpGoFree
⚡️Credits : @BotsBus
⚡️Error Report : @flashcomofficialchat
⚡️ Official Channel : @flashcomofficial

🔴 Flag Post
👍1
Forwarded from GetMart Official Channel (HelpGo Free)
We need help from you ?

> If you know php and know to host files in databases please make sure send a message to @FlashComSupport because we need help from you !

Thank You,
📌 Random Logo Generator Bjs

🚀 Command : /logo

Wait for answer : ✔️

🛠️ BJS Code :
HTTP.get({
  url:  "https://logomaker.apinepdev.workers.dev/?logoname=" + encodeURI(message),
  success: "/onLoading"
})
🚀 Command : /onLoading

Wait for answer :


🛠️ BJS Code :
var logo = JSON.parse(content).logo
if (logo) {
Api.sendChatAction({
chat_id: chat.chatid,
action: "upload_photo"
})
Api.sendPhoto({
photo: logo,
caption: `<b> Your Logo Generated!

Coded By @Swastik_Raj
🤩 Coding Channel @Privates_Bots</>`,
parse_mode: "html"
})
return
}
Api.sendChatAction({
chat_id: chat.chatid,
action: "typing"
})
Bot.sendMessage("*_ Some Error On External Api To Generate Logo._*")
⚡️Posted on : @flashcombjs
⚡️Posted by :
@CoderSwastik
⚡️Credits :
@Swastik_Raj
⚡️Api by : @Prime_Nepcoder
⚡️Error Report :
@flashcomofficialchat
⚡️ Official Channel :
@flashcomofficial

🔴 Flag Post
Do you want your bjs codes or bots giveaways to be posted in this channel !

⭐️ If your willing to post your bjs codes or your bjs bots giveaways to this channel you can contact @FlashComSupport by sending your post.

Post Format Will Be Edited And Posted In This Channel Once After Verifying

Send Message Of Your Bjs Codes or Bots to @FlashComSupport
📌 Logo Maker BJS

🚀 Command : /start

Wait for answer : ✔️

Answer : Send Logo Name ?

🛠 BJS Code :
Bot.sendMessage( "Click on Next type to create a\n  ☟different type of logo.☟")
// command post runs a command
// where the url is written opens a link:/

Api.sendPhoto({
photo:
"https://malfrafg.sirv.com/images.jfif?text=" +
message +
"&text.font.weight=extra-bold&text.size=80&text.font.style=italic&text.outline.width=10&text.outline.color=00000&text.position=center&text.font.family=Bitter&text.color=D90A08&text.outline.blur=10",
caption:
"*📝 Congrats! Your Logo Is Ready...\n\nGENERATED BY @" + bot.name + "*",
parse_mode: "markdown"
})


⚡️Posted on : @flashcombjs
⚡️Posted by : @flashcomowner
⚡️Credits : @CodeUnknownCredits
⚡️Error Report : @flashcomofficialchat
⚡️ Official Channel : @flashcomofficial

🔴 Flag Post
👍2
Need Fully Working Broadcast Bjs?
👍3
🔥🔥ADVANCED STATUS CHECKER BJ'S

🆘Command :- /track

Wait for Answer :- On

Answer :- 🔍 Sᴇɴᴅ Tʜᴇ Oʀᴅᴇʀ ID Tᴏ Tʀᴀᴄᴋ Sᴛᴀᴛᴜs Oғ Yᴏᴜʀ Oʀᴅᴇʀ.

🔥BJ's :- Api.sendChatAction({
chat_id: chat.chatid,
action: "typing"
})
User.setProperty("OrderID", message)
HTTP.get({
url: "Your Smm panel link ,
success: "order-stat"
})

🆘Command :- order-stat

🔥BJ's :- let free = new Date().toLocaleString("en-US", {
timeZone: "Africa/Dar_es_Salaam"})

var dt = Libs.DateTimeFormat.format(free, "dd,mm,yyyy");
var tm = Libs.DateTimeFormat.format(free, "h:MM");
var od = User.getProperty("OrderID")
var r = JSON.parse(content)
var oid = r.status
var rem = r.remains
var st = r.start_count
var bbb = r.charge
var cu = r.currency
var k = Bot.getProperty("management")
var k = Bot.getProperty("management")
if (k == "on") {
Api.sendPhoto({
photo: "https://imbt.ga/0qL1iJuryt",
caption:
"<b>🔋 Wᴇ ᴀʀᴇ ᴄᴜʀʀᴇɴᴛʟʏ Sᴀᴠɪɴɢ ᴘᴏᴡᴇʀ, Pʟᴇᴀsᴇ ᴜsᴇ ᴛʜɪs ᴄᴏᴍᴍᴀɴᴅ ᴀғᴛᴇʀ sᴏᴍᴇ Hᴏᴜʀs</b>",
parse_mode: "HTML"
})

return
} else var to = Bot.getProperty("maintenance")
if (to == "on") {
Bot.sendMessage(
"*😌 Sᴏʀʀʏ*, Tʜᴇ Bᴏᴛ ɪs ᴄᴜʀʀᴇɴᴛʟʏ *🛠 Uɴᴅᴇʀ Mᴀɪɴᴛᴇɴᴀɴᴄᴇ,*\n↺ _Pʟᴇᴀsᴇ ᴡᴀɪᴛ ɪᴛ ᴍᴀʏ ᴛᴀᴋᴇ ᴜᴘ ᴛᴏ 1-12 Hᴏᴜʀ_.")
return
} else
var ban = Bot.getProperty(user.telegramid + "ban")
if (ban == true) {
var button = [
{ title: "→Cᴏɴᴛᴀᴄᴛ Sᴜᴘᴘᴏʀᴛ", url: "https://wa.me/255677422493" }
]
Bot.sendInlineKeyboard(button, "*Yᴏᴜ ᴀʀᴇ ʙᴀɴɴᴇᴅ ғʀᴏᴍ ᴜsɪɴɢ ᴛʜɪs ʙᴏᴛ*")
return
} else
if(oid== undefined){
Bot.sendMessage("Cᴀɴ'ᴛ ғɪɴᴅ ᴏʀ ᴡʀᴏɴɢ ɪᴅ ᴛʀʏ ᴀɢᴀɪɴ")
return}
if(request.data){
var message_id = request.message.message_id
var chat_id = request.message.chat.id

Api.answerCallbackQuery({
callback_query_id: request.id,
text: " ᴏʀᴅᴇʀ sᴛᴀᴛᴜs ғᴏᴜɴᴅ\n\n🆔 Iᴅ : "+ od +"\n🔋 Sᴛᴀᴛᴜs : " + oid + "\n Rᴇᴍᴀɪɴs : " + rem + "\n📈 Sᴛᴀʀᴛ Cᴏᴜɴᴛ : "+ st +"\n\n❤️ ᴛʜᴀɴᴋs ᴏʀᴅᴇʀ ᴀɢᴀɪɴ ᴅᴇᴀʀ",
show_alert: true
})
return }
Api.sendPhoto({photo: "https://telegra.ph/file/b011867980b4b00ddf70a.jpg",
caption: " ᴏʀᴅᴇʀ sᴛᴀᴛᴜs ғᴏᴜɴᴅ\n\n🆔 Iᴅ : "+ od +"\n🔋 Sᴛᴀᴛᴜs : " + oid + "\n Rᴇᴍᴀɪɴs : " + rem + "\n📈 Sᴛᴀʀᴛ Cᴏᴜɴᴛ : "+ st +"",
parse_mode: "Markdown"
});

━━━━━━━━━━━━━━━━━━

❤️ Code by :- @mrX605Tz
👍2🏆2
🔊 Announcement

⭐️ We are just thrilled to announce you the GoFlash App.

What's GoFlash App ?
🌟 This app helps you to find codes to build telegram bots, telegram bot templates and tools.

🚀 Join GoFlash Official Channel to Get App Download Link and App Updates :

https://t.me/GoFlashOfficial
👍2