Flex Coder
2.08K subscribers
366 photos
61 videos
2 files
328 links
Uɴʟᴇᴀsʜ Tʜᴇ Pᴏᴡᴇʀ Oғ Bᴏᴛ Cᴏᴅɪɴɢ. Gᴇᴛ Fʀᴇᴇ Bᴏᴛ & Cᴏᴅᴇ Oɴ Oᴜʀ Cʜᴀɴɴᴇʟ 🧑‍💻

🔰 Oᴜʀ Yᴏᴜᴛᴜʙᴇ Cʜᴀɴɴᴇʟ: https://www.youtube.com/@Flex_Coder

📞 Cᴏɴᴛᴀᴄᴛ Us Oɴ: @Flex_Help
🌐 Oɴʟɪɴᴇ Fʀᴏᴍ: 3-07-2024
Download Telegram
New Video Uploaded 👇
https://youtu.be/VJaoREqDE7M

📹 Video Description:
In this video I have created auto approve telegram bot but this bot doesn't approve request only send personalized message in joined member dm.

⚠️ Note: Subscribe Backup Channel: https://youtube.com/@flecdev
3🔥2👍1
Suggest me idea for bot as I won't have idea to create any bot 🤔

Comment down ideas 👇
4💯21👍1
New Video Uploaded 👇
https://youtu.be/ua_CJN_fv68

📹 Video Description:
in this video i have created image / video enhancer & compressor bot as well as i have told how you can earn from that bot.

⚠️ Note: Subscribe Backup Channel: https://youtube.com/@flecdev
🔥21👍1
Only 1 Subscriber For 1k 🫠
1🔥1💯1
1K Subscribers 🎉🔥

We just hit 1K on YouTube 🤗

Thank you everyone for the support, views, and subs ❤️

Started from zero, still growing 📈

This is just the beginning
More content coming soon 😊

Stay tuned 👀
8🎉3🔥1
New Video Uploaded 👇
https://youtu.be/ePZs8pz-KPg

📹 Video Description:
In this video I have shown you how to create a File Store Telegram Bot. This bot allows users to upload, store, and access files directly through Telegram.

⚠️ Note: Subscribe Backup Channel: https://youtube.com/@flecdev
2🎉2👍1
📢 Update Regarding @BurhostBot 🚀


Over the past few days, many users reported issues with hosting on @BurhostBot. We’re happy to inform you that these problems have now been resolved, and you can use the bot normally again.
There’s also something exciting coming soon for @BurhostBot. 👀 Stay tuned for upcoming updates and new features!

Additionally, a new video will be released on our YouTube channel soon. I’m currently working on it, and it needs a little more time to be completed. Until then, stay connected and keep supporting us.

Thank you for your patience! 🔥
2🙏2👍1
🎉 BurHostBot v1.3 Update


🚀 After a long time, BurHost is back with a major upgrade!

What’s new:
•  Now hosted on a server for much faster performance
•  No boring ads anymore
•  No downtime issues like before
•  Improved stability (still under testing phase)

⚠️ Important note:
This is a newly server-hosted bot and is not fully tested yet. So If you face any issues, please report them to us immediately

🔄 More updates:
All other bots are been moved from Bots.Business to server hosting. This is done to avoid ads and downtime issues. As Bots.Business ecosystem is currently unstable, hoping for fixes soon

🎁 Special news:
1K subscriber surprise is cooking. Stay tuned, it just needs a bit more time

Test Burhost New Version
3🕊2👍1
💯2
Flex Coder
Join stream: https://youtube.com/live/VDtraInXdF0
🚨 Due to network issues, the full stream got disrupted. However, 1k Subscribers Gift is here 👇
🔥3
🚀 Introducing FlexGram 🎉

After months of development, I'm finally launching FlexGram, a Telegram Bot Framework built to make bot development faster and more organized.

Features:


• Clean coding structure
• Sever host bot support
• Easy command management
• Developer-friendly architecture
• Designed for scalability


💡 Inspired by the simplicity of platforms like Bots.Business, but built with its own structure and workflow for developers who want more flexibility and control.

🔗 Check it out: https://tinyurl.com/FlexGram

If you like the project, please consider starring the repository and following my GitHub profile. Every bit of support helps and motivates future updates.

❤️ Thank you for checking out FlexGram
👍2🏆2
5👍3😁2
This media is not supported in your browser
VIEW IN TELEGRAM
Edit your ChatGpt image without prompt 😱
👍32😁1
Guys, my mother's health is not good. Please pray for her. I hope she will be alright soon 😭🙏
🤯1613🙏5🐳2
This media is not supported in your browser
VIEW IN TELEGRAM
Difference Between Webhook & Polling 😉
2👍2🤩2
Flex Coder
Want me to start releasing FlexGram framework code 🤔?
Code post will be starting soon, so be active to get FlexGram codes 🤗
😍21
Add balance to user account 💸


📁 Filename: addBal.js
👨‍💻 Code:
const ADMIN_ID = process.env.ADMIN_ID;

  if (flex.user.id != ADMIN_ID) return;
  await sendMessage("*Enter your user id 🆔*", "MARKDOWN");
  await waitForAnswer("/getId");

📁 Filename: getId.js
👨‍💻 Code:
const ADMIN_ID = process.env.ADMIN_ID;
  if (flex.user.id != ADMIN_ID) return;
  await USER.setProperty("id", flex.message);
  await sendMessage("*Enter your balance 💸*", "MARKDOWN");
  await waitForAnswer("/getBal");

📁 Filename: getBal.js
👨‍💻 Code:
  const ADMIN_ID = process.env.ADMIN_ID;
  const id = await USER.getProperty("id");
  const btn = [
    [
      {
        text: "Claim Reward 🎉",
        callback_data: /claimBal ${id} ${flex.message} ,
      },
    ],
  ];
  if (flex.user.id != ADMIN_ID) return;

  await BOT.sendMessage(
    id,
    "*🎉 Congratulation you have get points from admin*\n\nClick following button to claim reward!!",
    "MARKDOWN",
    btn,
  );
  await sendMessage(*Point add request sended to *${id} , "MARKDOWN");
  await USER.deleteProperty("id");
  await clearWait();

📁 Filename: claimBal.js
👨‍💻 Code:
  const parts = flex.params.split(" ");
  const id = parts[0];
  const amount = parseFloat(parts[1]);
  if (flex.user.id != id) return;
  if (!isCallback) return;
  await FLEX.setProperty("balance", amount);
  await answerCallback("Balance added successfully ", true);

⚠️ Note: add your user id in .env file like ADMIN_ID=1234567890

#FlexGram
👍32👌2
🎉 FlexGram v1.0.1 is Here! 🎉

This update focuses on reducing boilerplate code and improving flexibility.

What's New

🔹 Smart Property Operations
getProp() and setProp() on BOT, USER, TEMP, and FLEX now support .add() and .remove().

• Numbers → add / subtract
• Strings → append / remove
• Arrays → push / filter

No more manual read-modify-write operations.

🔹 Flexible Options Object
chat_id and other options can now be placed anywhere inside the options object for all BOT and API methods.

BOT.sendMessage("Hello", { parse_mode: "HTML", chat_id: 123 })

API.sendMessage({ text: "Hello", chat_id: 123 })

No fixed parameter order required.

🔹 No More await
BOT, USER, TEMP, FLEX, API, and HTTP methods now handle promises automatically and log errors internally.

BOT.sendMessage("Hello")
Less code. Same result.

🔗 Check it out:
https://tinyurl.com/FlexGram

Star the project and comment features you'd like to see in the next FlexGram update 👇

❤️ Thank you for supporting FlexGram
👍3🐳2