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
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
FlashCom - BJS Codes / Bots
I can called: Mostly Pro ban codes 😂 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…
ProBan Codes(@mrX605Tz).zip
2.1 KB
▎ ProBan BB code is here
ᯤ Command:
ᯤ Command: @
⏳ Wait For answer: False
⚡️Posted on : @FlashComBjs
⚡️Credits : @mrX605Tz
⚡️Error Report : @FlashComBjsChat
⚡️Official Channel : @FlashComOfficial
ᯤ Command:
/banuser ᯤ Command: @
⏳ Wait For answer: False
PASS: MRX605 is legend⚠️ Remember: Change admin id and TimeZone I'm from Tanzania thus why 😂
⚡️Posted on : @FlashComBjs
⚡️Credits : @mrX605Tz
⚡️Error Report : @FlashComBjsChat
⚡️Official Channel : @FlashComOfficial
👍8👎2
▎ Advanced automatic delete old message include bot message and user message Before send new one
ᯤ Command:
⏳ Wait For answer: False
▎BJ'S CODE
❗ Bot.sendMessage():
❗ Api.sendMessage()
⚡️Posted on : @FlashComBjs
⚡️Credits : @mrX605Tz
⚡️Error Report : @FlashComBjsChat
⚡️Official Channel : @FlashComOfficial
ᯤ Command:
Onmassageid⏳ Wait For answer: False
▎BJ'S CODE
try {
var messageid = options.result.message_id
let requestMessageId = null
if (request.message_id) {
requestMessageId = request.message_id
}
if (request.data) {
messageid = request.message.message_id
}
var requestMessage = User.getProp("request_msg_id")
var resultMessage = User.getProp("result_msg_id")
if (requestMessage && resultMessage) {
Api.deleteMessage({
message_id: requestMessage
})
User.setProp("request_msg_id", null)
User.setProp("request_msg_id", requestMessageId, "string")
Api.deleteMessage({
message_id: resultMessage
})
User.setProp("result_msg_id", null)
User.setProp("result_msg_id", messageid, "string")
return
}
User.setProp("result_msg_id", messageid, "string")
User.setProp("request_msg_id", requestMessageId, "string")
} catch (e) {
User.setProp("result_msg_id", null)
User.setProp("request_msg_id", null)
}⚠️ After create Onmassageid command you must put the below option in every Api.sendMessage() or Bot.sendMessage()
❗ Bot.sendMessage():
{ on_result: Onmassageid }❗ Api.sendMessage()
on_result: Onmassageid⭐ Credits to owners if you post on your channel
⚡️Posted on : @FlashComBjs
⚡️Credits : @mrX605Tz
⚡️Error Report : @FlashComBjsChat
⚡️Official Channel : @FlashComOfficial
👍4
Anayone have, at least 10 Telegram Star 🌟 please bless me. Then i will give u automatically Telegram star payment code with subscriptions. u can add any duration u want like week mouth and the bot can automatically detect expired time @mrX605Tz
👍7👎3