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 أيام
أرشيف المشاركات
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,

📌 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

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

📢 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,

📢 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 Thanks,

Broadcast message Bjs ❓ 🚀 Command: /broadcastBjs 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: /messageBjs 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: @shivamb311Credits: unknown ⚡️Error Report: @flashcomofficialchat ⚡️Official Channel: @flashcomofficial

Delete link/url from group Bjs ❓ 🚀 Command: *Bjs code: function containsLink(text) { const linkRegex = /(https?:\/\/(?:www\.|(?!www))[^\s.]+\.\S{2,}|www\.\S{2,})/; return linkRegex.test(text); } const message = "Check out this website: https://www.example.com"; if (containsLink(message)) { var user_link = Libs.commonLib.getLinkFor(user); Api.deleteMessage({ chat_id: chat.chatid, message_id: request.message_id }); Bot.sendMessage(user_link + ", we have removed your message because it contains a URL."); } ⚡️Posted by: @shivamb311 ⚡️Credits: @developersameer ⚡️Error Report: @flashcomofficialchat ⚡️Official channel: @flashcomofficial

User information Bjs ❓ 🚀 Command: /infoBjs code: Api.getUserProfilePhotos({ user_id: user.telegramid, on_result: "onGetProfilePhotos" }); 🚀 Command: onGetProfilePhotosBjs 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: @shivamb311Credits: @sarozpaudel ⚡️Error Report: @flashcomofficialchat ⚡️Official Channel: @flashcomofficial

Why I Don't Post Code To This Channel As A Owner ? 🌟 I don't post codes because i have started develop an android app related where you can find / upload Bjs, Tpy Codes and Bots and even clone bots within the app even. But Sometimes We May Develop A Website For Apple / Linux Users Too. So For This Reason As I Don't Have Time To Post Codes... But Once I Have Finished Developed I Will Start Posting Codes To This Channel.... Sorry For The Inconvenience 😔

id

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: /successBjs 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: @shivamb311 ⚡️Credits: @sarozpaudel ⚡️Error Report: @flashcomofficialchat ⚡️Official Channel: @flashcomofficial

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: 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 : @shivamb311Credits : Unknown ⚡Error Report : @flashcomofficialchatOfficial Channel : @flashcomofficial

Explore the best bots you want ! ⭐ From @QiraOfficial telegram channel you can explore bots & it's updates which will be useful for you....

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

Repost 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

Start & Stop Bot without BB Account [Using API key & Bot ID] Bjs❓ 🚀 Command: /startbotBjs 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: /stopbotBjs 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: @shivamb311 ⚡️ Credits: @bjsbottg ⚡️ Error Report: @flashcomofficialchat ⚡️ Official Channel: @flashcomofficial

Anyone Who is Pro Coders of BJS ( Bot JavaScript ) And Knows Well on Bots.Business And Also Pro Coders of TPY and Knows Well on Telebot Creator Please Make Sure We Need Some Coders To Our Channel To Post Their Codes On Our Channel Tag admin in @flashcomofficialchat Regarding This Thanks FlashCom Owner #FlashCoders