FlashCom - BJS Codes / Bots
Do you want multiple files share bot for free in BB ? 100 reaction required Demo @FX_storebot π₯Creator: @mrX605Tz π₯To be Post On: FlashCom
β€οΈTell me which features to be added in next version V0.2 of @FX_storebot
πSuggestions features
β File with caption βοΈ
β Custom search unique name
β Text, images Upload βοΈ
β Download count βοΈ
β Link on or off
πSuggestions features
β File with caption βοΈ
β Custom search unique name
β Text, images Upload βοΈ
β Download count βοΈ
β Link on or off
All features will be published in next version V0.2 of @FX_storebot stay turn also sorry we need to restore our bot so from now don't add any important things.
π3π₯2
Forwarded from Siya Bots
Multiple File Sharing Telegram Bot BJS code.
Command:
Command:
Answer:
Wait for answer: false
Keyboard:
BJS:
Command:
Wait for answer: true
YouTube Tutorial & Demo : https://youtu.be/2Rnm6jd0ZF4?feature=shared
Credit: @siyabots
Command:
/startif(!params){
Api.sendMessage({ text: "/upload - To upload content and share it.",
reply_markup: JSON.stringify({
hide_keyboard: true
})
})
return;
}
if (params) {
var files = Bot.getProperty(params);
if (files && files.length > 0) {
files.forEach(file => {
switch (file.type) {
case "video":
Api.sendVideo({ video: file.file_id, caption: file.caption || undefined });
break;
case "photo":
Api.sendPhoto({ photo: file.file_id, caption: file.caption || undefined });
break;
case "audio":
Api.sendAudio({ audio: file.file_id, caption: file.caption || undefined });
break;
case "sticker":
Api.sendSticker({ sticker: file.file_id });
break;
case "document":
Api.sendDocument({ document: file.file_id, caption: file.caption || undefined });
break;
case "animation":
Api.sendAnimation({ animation: file.file_id, caption: file.caption || undefined });
break;
case "voice":
Api.sendVoice({ voice: file.file_id, caption: file.caption || undefined });
break;
}
});
} else {
Bot.sendMessage("No files to send.");
}
}Command:
/uploadAnswer:
Send your content for sharing!Wait for answer: false
Keyboard:
β
BJS:
Bot.runCommand('/handle')Command:
/handleWait for answer: true
if (message == "β
") {
if (options && options.shrt) {
var filesList = Bot.getProperty(options.shrt, []);
if (filesList.length > 0) {
return Bot.sendMessage("Done!\nHere is your link: https://t.me/" + bot.name + "/?start=" + options.shrt);
} else {
return Bot.sendMessage("Error: No files uploaded to confirm.\nUse: /upload to upload. ");
}
} else {
return Bot.sendMessage("Error: No files uploaded to confirm.\nUse /upload to upload.");
}
}
var shrt = (new Date().getTime()).toString(36);
if (options && options.shrt) {
shrt = options.shrt;
}
var filesList = Bot.getProperty(shrt, []);
var fileEntry = {};
if (request.video && request.video.file_id) {
fileEntry = { type: "video", file_id: request.video.file_id, caption: request.caption || "" };
} else if (request.photo && request.photo.length > 0 && request.photo[0].file_id) {
fileEntry = { type: "photo", file_id: request.photo[0].file_id, caption: request.caption || "" };
} else if (request.audio && request.audio.file_id) {
fileEntry = { type: "audio", file_id: request.audio.file_id, caption: request.caption || "" };
} else if (request.sticker && request.sticker.file_id) {
fileEntry = { type: "sticker", file_id: request.sticker.file_id };
} else if (request.document && request.document.file_id) {
fileEntry = { type: "document", file_id: request.document.file_id, caption: request.caption || "" };
} else if (request.animation && request.animation.file_id) {
fileEntry = { type: "animation", file_id: request.animation.file_id, caption: request.animation.caption || "" };
} else if (request.voice && request.voice.file_id) {
fileEntry = { type: "voice", file_id: request.voice.file_id, caption: request.caption || "" };
}
if (Object.keys(fileEntry).length > 0) {
filesList.push(fileEntry);
Bot.setProperty(shrt, filesList, "json");
Bot.runCommand('/handle', { shrt: shrt });
} else {
Bot.sendMessage("No valid media file detected. Please send a valid media file.");
}YouTube Tutorial & Demo : https://youtu.be/2Rnm6jd0ZF4?feature=shared
Credit: @siyabots
π5π€3
FlashCom - BJS Codes / Bots
β€οΈTell me which features to be added in next version V0.2 of @FX_storebot πSuggestions features β File with caption βοΈ β Custom search unique name β Text, images Upload βοΈ β Download count βοΈ β Link on or off All features will be published in next versionβ¦
β€οΈ95% is complete with:
- Force Join
- Copy and forward Protection
- Video,audio,document and photo Uploading with caption
- Link Mute and Unmute Protection
10 Reaction Please...β¨
- Force Join
- Copy and forward Protection
- Video,audio,document and photo Uploading with caption
- Link Mute and Unmute Protection
10 Reaction Please...β¨
π₯17π11π6
Introducing @FX_storebot V0.2: Your Enhanced File Storage Solution
@FX_storebot V0.2 is here with new features that make managing and sharing your files even easier and more secure:
β¨What's New:
β V0.2 brings powerful new features that improve the security and functionality of your file storage.
β Effortlessly control access to your files with Force Join and Link Mute/Unmute.
β Make your file sharing more informative by uploading files with personalized captions.
@FX_storebot: Your Reliable File Storage Solution
@FX_storebot V0.2 continues to offer a convenient and secure way to store and share your digital content. Get started today and experience the difference!
#FlashCombjs #xBots_updates
π₯15π12
What do you suggest in V0.3 of @FX_storebot
Anonymous Poll
49%
Clone feature
9%
Customer Caption
20%
Broadcast
22%
Auto Delete
π1
Do you want advanced multiple membership checker β€οΈ
50 reaction required
50 reaction required
π14π₯6π1
Auto-Accept Join Requests in Channel Bot - BJS
Command:
Note: The bot must be an admin in the channel for this to work.
Β© @siyabots
Command:
*if (!request) return
if (typeof request === "string") {
try {
request = JSON.parse(request)
} catch (e) {
return
}
}
let info = request.chat_join_request
if (info) {
Api.sendMessage({
chat_id: info.from.id,
text: "Your request to join the channel has been accepted."
})
Api.approveChatJoinRequest({
chat_id: info.chat.id,
user_id: info.from.id
})
}
Note: The bot must be an admin in the channel for this to work.
Β© @siyabots
π3
π How to become admin in any channel if you have bot that is admin and access ( Add New Admin Right ).
π About: By Using this way you can restore the admin right if you lost it.
βΉοΈ Required:
If your have all of above replace them in below API then click wait till showing a response. And make sure the status is true
πAPI:
β‘οΈPosted on : @FlashComBjs
β‘οΈCredits : @mrX605Tz
β‘οΈError Report : @FlashComBjsChat
β‘οΈOfficial Channel : @FlashComOfficial
π About: By Using this way you can restore the admin right if you lost it.
βΉοΈ Required:
βΊ Correct BOT TOKEN
βΊ Group or channel ID
βΊ Your Telegram ID
If your have all of above replace them in below API then click wait till showing a response. And make sure the status is true
πAPI:
https://api.telegram.org/bot<YOUR_BOT_TOKEN>/promoteChatMember?chat_id=<CHAT_ID>&user_id=<USER_ID>&can_change_info=true&can_post_messages=true&can_edit_messages=true&can_delete_messages=true&can_invite_users=true&can_restrict_members=true&can_pin_messages=true&can_promote_members=true&can_manage_voice_chats=true&can_manage_video_chats=true&can_manage_chat=true&can_add_web_page_previews=true&can_change_chat_photo=true&can_delete_chat_photo=true
β‘οΈPosted on : @FlashComBjs
β‘οΈCredits : @mrX605Tz
β‘οΈError Report : @FlashComBjsChat
β‘οΈOfficial Channel : @FlashComOfficial
π2
π Pin message in your bot BJS Code.β
π You can pin any message in your bot.
π Command :
β³ Wait for answer : β On
π Answer :
π BJS Code :
π Command :
β³ Wait for answer : β Off
π Answer :
π BJS Code :
β‘οΈPosted on : @FlashComBjs
β‘οΈCredits : @CodeUnknownCredits
β‘οΈError Report : @FlashComBjsChat
β‘οΈOfficial Channel : @FlashComOfficial
#BjsCode
π You can pin any message in your bot.
π Command :
/pinβ³ Wait for answer : β On
π Answer :
Send a message which you want to pinπ BJS Code :
let text = "+message +"
Api.sendMessage({
text: message,
on_result: "/pin2"
})
π Command :
/pin2β³ Wait for answer : β Off
π Answer :
π BJS Code :
var chat_id = options.result.chat.id
var message_id= options.result.message_id
Api.pinChatMessage({
chat_id: chat_id,
message_id: message_id
})
β‘οΈPosted on : @FlashComBjs
β‘οΈCredits : @CodeUnknownCredits
β‘οΈError Report : @FlashComBjsChat
β‘οΈOfficial Channel : @FlashComOfficial
#BjsCode
π4
π How To Make The Upi Payment
π This code helps user to Withdraw Thier Money Automatic .
π Command :
π οΈ BJS Code :
π Command 01 :
π οΈ BJS Code 01 :
β‘οΈPosted on : @flashcombjs
β‘οΈCredits : @Abhishek_back
β‘οΈError Report : @flashcombjschat
β‘οΈOfficial Channel : @flashcomofficial
π This code helps user to Withdraw Thier Money Automatic .
π Command :
/withdrawπ οΈ BJS Code :
let mid = "fill_mid";
let mkey = "fill_mkey";
let guid = "fill_GUID";
var url = `https://full2sms.in/api/v2/payout?mid=${mid}&mkey=${mkey}&guid=${guid}&type=upi&amount=1&upi=${upi}&info=${info}`;
HTTP.get({
url: url,
background: true,
success: "Auto"
});
π Command 01 :
Autoπ οΈ BJS Code 01 :
var result = JSON.parse(content);
var status = result.status;
var msg = result.message;
var txnid = result.txn_id || "Failed";
var proof = User.getProp("upi");
Bot.sendMessage("*Status:* " +status+ "\n*Message:* " +msg+ "\n*Transaction id:* " +txnid);
β‘οΈPosted on : @flashcombjs
β‘οΈCredits : @Abhishek_back
β‘οΈError Report : @flashcombjschat
β‘οΈOfficial Channel : @flashcomofficial
π3
β Mostly Advanced ImgBB Image Uploader BJS
α―€ Command:
β³ Wait For answer: True
βBJ'S CODE
α―€ Command:
βBJ'S CODE
βGet API Key from: api.imgbb.com
β‘οΈPosted on : @FlashComBjs
β‘Copyright: @BjsCodes
β‘οΈCredits : @devendra
β‘οΈError Report : @FlashComBjsChat
β‘οΈOfficial Channel : @FlashComOfficial
α―€ Command:
/uploadβ³ Wait For answer: True
βBJ'S CODE
if (!request.photo[0]) {
Bot.sendMessage("Send only photo below 32mb!")
return
}
Api.sendChatAction({ action: "Upload_photo" })
for (let i = request.photo.length - 1; i >= 0; i--) {
if (request.photo[i]) {
Api.getFile({ file_id: request.photo[i].file_id, on_result: "/genPhoto" })
return
}
}α―€ Command:
/genPhoto βBJ'S CODE
var key = "your api key here"
if (!content) {
var link = "https://api.telegram.org/file/bot" + bot.token + "/" + options.result.file_path;
HTTP.get({
url: "https://api.imgbb.com/1/upload?key=" + key + "&image=" + link,
success: "/genPhoto",
folow_redirects: true
});
return;
}
var response = JSON.parse(content);
if (response.success == true) {
Bot.sendMessage("response.data.url, { disable_web_page_preview: false });
} else {
Bot.sendMessage("Couldn't Upload file.");
}
βGet API Key from: api.imgbb.com
β‘οΈPosted on : @FlashComBjs
β‘Copyright: @BjsCodes
β‘οΈCredits : @devendra
β‘οΈError Report : @FlashComBjsChat
β‘οΈOfficial Channel : @FlashComOfficial
β‘2π1
β¨ Many People Ask for Subscription Code. I'm currently working on it and soon if possible i drop here.
π4π2π€2
βοΈ Buy a YouTube channel consisting of 949 subscribers and many more!
-- You can buy a YouTube Channel with 949 subscribers just for $35.
βΉοΈ Channel Details
Channel Created On :
Channel Total Subscribers :
Videos Posted Before :
Last Views Rise Till :
Watch Hours :
π΅ Price : $35
π Note : This channel is not owned by FlashCom as this is given by a different user to sell and this channel is opened on 2020 as you can see the evidence listed in photos more evidences can be sent you on your making order. and this is sold by us as we give in less price and you can do the related payments with the specific admin mentioned below and please read to payments and purchases policy before making the payments.
βοΈ Buy the channel now until someone buys it!
Contact Us : @FlashComAssistant
-- You can buy a YouTube Channel with 949 subscribers just for $35.
βΉοΈ Channel Details
Channel Created On :
12/12/2020Channel Total Subscribers :
949Videos Posted Before :
50+Last Views Rise Till :
14kWatch Hours :
9.1π΅ Price : $35
π Note : This channel is not owned by FlashCom as this is given by a different user to sell and this channel is opened on 2020 as you can see the evidence listed in photos more evidences can be sent you on your making order. and this is sold by us as we give in less price and you can do the related payments with the specific admin mentioned below and please read to payments and purchases policy before making the payments.
βοΈ Buy the channel now until someone buys it!
Contact Us : @FlashComAssistant
π4
FlashCom - BJS Codes / Bots
Do you need this advance ban BJ'S which you can ban user for desire duration and bot can unban automatically after time count off. πββοΈ Remember i don't use RunAfter to perform automatically unban feature. So this code save iteration π β¨ Hits 50 reaction
Don't forget about it
π₯4π1π1
FlashCom - BJS Codes / Bots
Don't forget about it
I can called: Mostly Pro ban codes π
Features:
:- Drop your opinion before the code get dropped βΊοΈπ«‘ ( remember i will post soon so suggest fast )
Features:
- Automatically unban π
- No need to put ban code in every command π€
- Only 1 command needed π³
- You can ban user forever π₯±
- It's restrict all communication in bot
- Easy to use even u don't have code skill
:- Drop your opinion before the code get dropped βΊοΈπ«‘ ( remember i will post soon so suggest fast )
π₯5π3