FlashCom - BJS Codes / Bots
886 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
โ— Star for test code guys ( Don't think negative )
๐Ÿ‘Ž8๐Ÿ‘5
โ–Ž How to make Automatically Alphabets Inline buttons in BJ'S.

แฏค Command:
/filter
โณ Wait For answer: False

โ–ŽBJ'S CODE

/*..... Code by  MRX605 */

Api.sendMessage({
text: "Here is your alphabets ",
reply_markup: {
inline_keyboard: Array.from({ length: 26 }, (_, i) => {
const letter = String.fromCharCode(65 + i)
return { text: letter, callback_data: `/filter ${letter}` } /* .....Your Desire Call back Data or url.......*/
})
.reduce((rows, button, index) => {
if (index % 3 === 0) rows.push([])
rows[rows.length - 1].push(button)
return rows
}, [])
.concat([[{ text: "1-9", callback_data: `@filter 0-9` }]])
}
})

โš ๏ธ Credits to ownership



โšก๏ธPosted on : @FlashComBjs
โšก๏ธCredits :
@mrX605Tz
โšก๏ธError Report :
@FlashComBjsChat
โšก๏ธOfficial Channel :
@FlashComOfficial
๐Ÿ‘6
Need ? , Drop 50 reaction ( Advanced add/remove balance system BB code in 2024 )๐Ÿ”ฅ
โšก28๐Ÿ†14๐Ÿ‘Œ12๐Ÿ”ฅ10๐Ÿ‘2
โ™š Introducing CHAT Xโด โ€“ Your Ultimate Intelligent Assistant for an โ˜… Enhanced Communication Experience!

Whether you have a pressing question or need coding assistance, CHAT Xโด is always ready to lend a helping hand.

โ–Ž  Key Features:

  - Private Inquiries: โ‡กDirectly send your questions for a tailored response that suits your needs!.โ™ก

  - Group Engagement: Collaborate with others using commands like "/ask" or "/gpt" to foster dynamic discussions.

  - Image Generation: Create stunning visuals โ™ก effortlessly with the simple "/image" command.

โ–Ž What is difference with others ?:

CHAT Xโด  first is free AI (24/7) allow you to make โ conversations โž fast without any limitations also is equipped to handle a wide โŽ™ array of formats, including:

(.js, .py, .php, .etc.sh, .bat, .html, .xml, .json.txt, .md) Just send your errors code and see the action!

โ–ŽJoin the X-Team Revolution! Unlock
โ–Žthe full potential of your inquirie
โ–Žand elevate your communication
โ–Žexperience with CHAT Xโด today!

@AIxchatbot #ai
๐Ÿ‘3
FlashCom - BJS Codes / Bots
Need ? , Drop 50 reaction ( Advanced add/remove balance system BB code in 2024 )๐Ÿ”ฅ
Automatically Telegram Star deposit Code Need?
โšก7๐Ÿ‘3๐Ÿ”ฅ1
FlashCom - BJS Codes / Bots
Need ? , Drop 50 reaction ( Advanced add/remove balance system BB code in 2024 )๐Ÿ”ฅ
โ–ŽAdvance Balance Adder BJ'S code

แฏค Command: @topup
โณ Wait For answer: False

โ–ŽBJ'S CODE


if (user.telegramid != 6542581547 ) return Api.sendMessage({ text: "Access Denied" })

if (!params)
return Api.sendMessage({
text: "โ“˜ Please use the command as: @topup <userId>"
})

const [userId, action, value] = params.split(" ")
const userBalance = Libs.ResourcesLib.anotherUserRes("balance", userId)
const parsedValue = parseInt(value)

let increment = Bot.getProperty(`increment_${userId}`) || 10
let lastAction = Bot.getProperty(`lastAction_${userId}`) || "N/A"
let lastAdmin = Bot.getProperty(`lastAdmin_${userId}`) || "N/A"

const actions = {
add: () => {
if (!isNaN(parsedValue)) {
userBalance.add(parsedValue)
lastAction = `Added $${parsedValue}`
lastAdmin = user.telegramid
}
},
remove: () => {
if (!isNaN(parsedValue) && userBalance.value() >= parsedValue) {
userBalance.remove(parsedValue)
lastAction = `Removed $${parsedValue}`
lastAdmin = user.telegramid
}
},
set: () => {
if (!isNaN(parsedValue)) {
increment = parsedValue
Bot.setProperty(`increment_${userId}`, increment, "integer")
}
},
reset: () => {
userBalance.set(0)
lastAction = "Cleared Balance"
lastAdmin = user.telegramid
}
}

actions[action]?.()

Bot.setProperty(`lastAction_${userId}`, lastAction, "string")
Bot.setProperty(`lastAdmin_${userId}`, lastAdmin, "string")

const messageText = `<b>Balance Panel</b>\n\n<b>๐Ÿ†” User Id:</b> ${userId}\n<b>๐Ÿ’ฐ Balance:</b> $${userBalance
.value()
.toFixed(
2
)}\n\n<b>Last Action:</b> ${lastAction}\n<b>Last Admin:</b> ${lastAdmin}\n\nโœด <b>Current Increment:</b> $${increment}`

const inlineKeyboard = [
[
{
text: `+ ${increment}`,
callback_data: `@topup ${userId} add ${increment}`
},
{
text: `- ${increment}`,
callback_data: `@topup ${userId} remove ${increment}`
}
],
[{ text: "๐Ÿšซ Clear Balance", callback_data: `@topup ${userId} reset` }],
[1, 5, 10, 100, 500, 1000].map(i => ({
text: `โœด ${i}`,
callback_data: `@topup ${userId} set ${i}`
}))
]

inlineKeyboard.sort(() => Math.random() - 0.5)

if (request.message?.message_id) {
Api.editMessageText({
message_id: request.message.message_id,
text: messageText,
parse_mode: "HTML",
reply_markup: { inline_keyboard: inlineKeyboard }
})
} else {
Api.sendMessage({
text: messageText,
parse_mode: "HTML",
reply_markup: { inline_keyboard: inlineKeyboard }
})
}

โ“˜ I use this code in my bot so it's possible to get any defied errors bcoz some of functions i make in master command so if u facing any issue tell us.


โ–ŽPosted on : @FlashComBjs
โ–ŽCredits :
@mrX605Tz
โ–ŽError Report :
@FlashComBjsChat
โ–ŽOfficial Channel :
@FlashComOfficial
๐Ÿ‘5
FlashCom - BJS Codes / Bots
โ–ŽAdvance Balance Adder BJ'S code แฏค Command: @topup โณ Wait For answer: False โ–ŽBJ'S CODE if (user.telegramid != 6542581547 ) return Api.sendMessage({ text: "Access Denied" }) if (!params) return Api.sendMessage({ text: "โ“˜ Please use the commandโ€ฆ
โš ๏ธ WARNING : For any BJS coder try to Copy my knowledge and ideas without giv credits, Don't dare to think ur than me. Please Focus on ur own ideas OK.....
๐Ÿ‘5
Need? ๐Ÿ˜‚
This BJ'S allow you to make multiple currencies in your bot. and when people choose any currency also the Bot amount changed into set currency
.
๐Ÿ‘5โšก3
โ–ŽMultiple Bet BJ'S code available ๐Ÿ˜‚๐Ÿ˜˜

Up to now we have 2 pending Codes

- Telegram Star Deposit BJ'S โค๏ธ
- Multiple Currencies BJ'S
๐Ÿ™


Drop Code emoji to unlock , minimum per code 10 reactions. ๐Ÿ‘ ( TG Star work in progress 56% )
๐Ÿ‘7โšก6๐Ÿ”ฅ1๐Ÿ†1
๐Ÿš€ Introducing GetMart v1.8

> GetMart v1.8 is the largest update so far. This update is the most cool update and has more features than before. And you can easily install bots and added new bot platforms such as bots.business and telebot creator bots too...

๐Ÿฆธ Features of GetMart v1.8

- Install Bots.Business and Telebot Creator Bots.
- Added settings menu.
- Added profile menu
- Track your last actions took place.
- Clear all emails at once.
- Search bots randomly.
- Search bots by name or keyword.
- Switch the platforms according to you wish in settings.
- Switch versions according to you wish. ( Free / Premium )
- Report system added.
- Manual search option updated.
- Premium version updated.
- Bots structure updated.
- And more...


Tutorialsโ“

-- You can view tutorials if you don't know about GetMart v1.8


Warning โš ๏ธ

- Make sure that once after the bot is launch spamming may ban you from using the bot. Please don't try to send any messages or run any command to the bot within 1 seconds multiple times even though the bot doesn't respond if you do then it may lead to a ban.

Try using the new version of GetMart now!


#GerMartV1.8
๐Ÿ‘1
โ–ŽHow to get telegram Bot id in BB


- Command: Any
- Wait Answer: Off

BJ'S
const botId = bot.token.split(":")[0]
Bot.sendMessage("Your bot ID is: " + botId)


โ–ŽPosted on : @FlashComBjs
โ–ŽCredits :
@mrX605Tz
โ–ŽError Report :
@FlashComBjsChat
โ–ŽOfficial Channel :
@FlashComOfficial
๐Ÿ‘2
What API you need... Comment Below ?
๐Ÿ‘3
๐Ÿค– Install the New Bjs Bot Added To GetMart Store

๐Ÿ…ฝ Bot Name : Feedback Bot

๐Ÿ…ณ Description : Users can create feedback and they can view feedback and admins only can delete feedback and also the top feedback will be listed on top

๐Ÿ…ธ Bot ID : 1838237

๐Ÿ…ฟ Platform : Bots.Business

๐Ÿ‘ค Request From : Ninja's Ar****


โฌ‡๏ธ Click here to install bot
๐Ÿ‘2๐Ÿค2
Forwarded from GetMart Official Channel (FlashCom)
โ€‹โ€‹๐ŸŽ‰ GetMart V1.8 Update

โœ… We have updated @GetMartBot with special feature there are advantages and disadvantages for you. But to improve GetMart long last we have to update and add features.

Bug Error :  Bug errors has been fixed.

Points :  You must have the required points to install bots each bot may have different price you must have balance to install those. ( First time receive 5,000 points )

ShortCut Command : Added some shortcut commands you can check in menu, to see shortcuts and to know on using it.

Updated Commands : Several commands has been updated and improved to new systems.

Time Limit : Once after you install some bots you have to wait 1 hour.

Bonus Points : Every 24 hours automatically 10 bonus points will be added to your account.

Install Bots and No Premium Bots : You can install bots which was in premium and you must have related points.

Premium Updated : Premium users can install bots without time limit and free of ads including they will get 100,000 points.

Balance Check : You can check your balance in your profile start> Settings> Profile.

Optimized : Bot has been optimized and works faster than before.

Installation Fast : Install bots fast than before

Free Plan : Free plan users will get 5000 points for first time on start after this and make sure you can earn points in different ways and also by bonus which you get daily.

Premium Plan : Premium users receive 100,000 points and free of ads.

What's Points and Why ?
- Points are made where you can purchase bots by points and you must have the required points value to install a bot.

Tutorials : Updating Soon!
๐Ÿ‘2
๐Ÿค– Install a Bjs Bot In GetMart Store

๐Ÿ…ฝ Bot Name : Cloud Archive Bot

๐Ÿ…ณ Description : Store media like file, image and get shareable url where users will be able to download the media url you shared using your bot.

๐Ÿ…ธ Bot ID : 1856725

๐Ÿ…ฟ Platform : Bots.Business

๐Ÿ’Ž Price : 2800

โฌ‡๏ธ Click here to install bot
โžค GetMartBot is a largest store which was made by FlashCom where you can install bots.business bots and telebot creator bots.

Why this is useful โ“
ห—หห‹   โ˜… หŽหŠห—    You can install very useful and rare bots in @GetMartBot to your bots.business and telebot creator account directly once after providing account email address.  And this can be done without any interruptions and no many ads found in this bot.

Extra ๐Ÿ‘‡๐Ÿผ
โคณ You may sometimes find changes in future on GetMart.
โคณ Terms and Conditions apply.
โคณ Free and Easy.
โคณ Install bots directly to your bots.business account or telebot creator account.

Join GetMart New Switched Channel : @GetMartOfficialChannelโญ๏ธ Welcome to GetMart Updates Channel

โžค GetMartBot is a largest store which was made by FlashCom where you can install bots.business bots and telebot creator bots.

Why this is useful โ“
ห—หห‹   โ˜… หŽหŠห—    You can install very useful and rare bots in @GetMartBot to your bots.business and telebot creator account directly once after providing account email address.  And this can be done without any interruptions and no many ads found in this bot.

Extra ๐Ÿ‘‡๐Ÿผ
โคณ You may sometimes find changes in future on GetMart.
โคณ Terms and Conditions apply.
โคณ Free and Easy.
โคณ Install bots directly to your bots.business account or telebot creator account.

Join GetMart New Switched Channel : @GetMartOfficialChannel
๐Ÿ‘1
๐Ÿค– Install a Bjs Bot In GetMart Store

๐Ÿ…ฝ Bot Name : Livegram Base Bot.

๐Ÿ…ณ Description : No Description Given.

๐Ÿ…ธ Bot ID : 1084806

๐Ÿ…ฟ Platform : Bots.Business

๐Ÿ’Ž Price : 50

โฌ‡๏ธ Click below button to install bot in GetMart Bot or click here.
๐Ÿ‘1
๐Ÿค– Install a Bjs Bot In GetMart Store

๐Ÿ…ฝ Bot Name : Vehicle Info Bot.

๐Ÿ…ณ Description : Search information about vehicles .

๐Ÿ…ธ Bot ID : 1827140

๐Ÿ…ฟ Platform : Bots.Business

๐Ÿ’Ž Price : 50

โฌ‡๏ธ Click below button to install bot in GetMart Bot or click here.
๐Ÿ‘1
๐Ÿค– Install a Bjs Bot In GetMart Store

๐Ÿ…ฝ Bot Name : Trx Auto Pay Bot.

๐Ÿ…ณ Description : No Description Given.

๐Ÿ…ธ Bot ID : 1194412

๐Ÿ…ฟ Platform : Bots.Business

๐Ÿ’Ž Price : 50

โฌ‡๏ธ Click below button to install bot in GetMart Bot or click here.
๐Ÿ‘2
Happy Republic Day For India ๐Ÿ‡ฎ๐Ÿ‡ณ

Wishing you a joyful Republic Day! May the spirit of patriotism and love for the country fill your heart today and always.
On this Republic Day, letโ€™s remember the sacrifices of those who made the freedom possible. May indians continue to build a brighter, united india.

Wishes from FlashCom ๐Ÿค—
๐Ÿ”ฅ5๐Ÿ‘2
๐Ÿ“Œ MarkdownV2 vs HTML in Telegram

๐Ÿ“ข Telegram provides two main formatting methods:
โœ… MarkdownV2 (Simple & Secure)
โœ… HTML (More Customization)

๐Ÿ”น What is MarkdownV2?

โœ” Bold: *Bold Text* โ†’ Bold Text
โœ” Italic: _Italic Text_ โ†’ Italic Text
โœ” ๐Ÿ”— Link: [Google](https://google.com) โ†’ Google

โš  In MarkdownV2, special characters need to be escaped!
Example: \*Escape Required\* โ†’ Escape Required

๐Ÿ”น What is HTML?

โœ” Bold: <b>Bold Text</b> โ†’ Bold Text
โœ” Italic: <i>Italic Text</i> โ†’ Italic Text
โœ” ๐Ÿ”— Link: <a href="https://google.com">Google</a> โ†’ Google
โœ” Underline: <u>Underlined</u> โ†’ <u>Underlined</u>
โšก HTML offers more formatting options like underline and strikethrough!


---

๐Ÿ“Œ Which One to Use?

โœ… MarkdownV2 โ€“ When you need simple and fast formatting.
โœ… HTML โ€“ When you need more customization and styling.


---

๐Ÿ”— Example (Both Formats in Action!):

๐Ÿ”น MarkdownV2:

Api.sendMessage({
  text:"*Welcome to Telegram!*",
  parse_mode:"Markdown"
})


Result:
โ†’ Welcome to Telegram!

๐Ÿ”น HTML:

Api.sendMessage({
  text: "<b>Welcome to Telegram!</b>",
  parse_mode: "HTML"
})

Result:
โ†’ Welcome to Telegram!

If you have any doubts, feel free to ask! ๐Ÿš€

โ™พ CHANNEL: @DORAXCODES | @flashcombjs
โ™พ CREDIT: @DORABITA007
๐Ÿ‘3๐Ÿ‘Œ3๐Ÿ”ฅ2