Saturday, August 2, 2025

6.(command:/bc)



 6.(command:/bc)


/bc




idd = '1950552279'
if str(idd) != str(message.chat.id):
    bot.sendMessage(chat_id=u, text="❌ Command not found")
else:
    code = f"""bot.forwardMessage(chat_id=u,from_chat_id='''{message.chat.id}''',message_id='''{message.message_id}''')"""
    task = Bot.broadcast(code=code)
    bot.sendMessage("<b>📣 Broadcast Sent...</b>")
    Bot.saveData(task, None)

5.(command:/chack)



5.(command:/chack)


/chack




def check():
    channels = [
        '@Earningv3', '@Earningv3', '@Earningv3', '@Earningv3',
    ]

    for channel in channels:
        membership_status = bot.getChatMember(channel, u)
        if membership_status.status == 'left':
            return False
    return True


if check():
    keyboard = ReplyKeyboardMarkup(True)
    keyboard.row("🖥️ Account", "⚡ Referral")
    keyboard.row("💳 Wallet", "💲 Withdrawal")
    keyboard.row("SUPPORT 💸")
    keyboard.row("📊 Status")

    bot.replyText(
        chat_id=message.chat.id,
        text="🎉 Welcome to the main menu. You can now use this bot.",
        reply_markup=keyboard,
        parse_mode="markdown"
    )

    refer = User.getData("refer")
    bonus_given = User.getData("ref_bonus")

    if refer is not None and bonus_given is None:
        bot.replyText(
            chat_id=refer,
            text="💰 You have received 1 টাকা for referring a new user.",
            parse_mode="markdown"
        )

        ref_balance = int(User.getData("balance", user=refer)) + 1
        User.saveData("balance", ref_balance, user=refer)

        ref_count = int(User.getData("ref_count", user=refer)) + 1
        User.saveData("ref_count", ref_count, user=refer)

        User.saveData("ref_bonus", True)
else:
    bot.replyText(
        chat_id=u,
        text="❌ You need to join all our channels first.",
        parse_mode="markdown"
    )
 

4.(command:/withdraw)


 4.(command:/withdraw)



/withdraw




def withdraw():
    wall = User.getData("wallet")
    bal = User.getData("balance")

    Mini_Withdraw = "100"
    Max_Withdraw = str(int(bal))

    if bal == None:
        return
    if wall == None:
        bot.replyText(
            u, "😎 Please set your wallet first. Transactions are not possible without it.", parse_mode="html")
        return
    if bal >= int(Mini_Withdraw):
        bot.replyText(
            u, f"💰 Minimum withdrawal: {Mini_Withdraw} টাকা. \n🚀 Maximum withdrawal: {Max_Withdraw} টাকা.\n\n📝 Now, আপনি কত টাকা উইথড্র করবেন তা পরিমাণ লিখুন 👇.", parse_mode="html")
        Bot.handleNextCommand("Withdraw2")
    else:
        bot.replyText(
            u, f"❌ Minimum withdrawal amount is {Mini_Withdraw} টাকা.", parse_mode="html")
        return


withdraw()

3.(command:/suport)

 


3.(command:/suport)


/suport


bot.replyText(
    chat_id=u,
    text="☎️ *উথড্র দেওয়ার ২৪ ঘন্টার মেধ্যে পেমেন্ট না পেলে যোগাযোগ করুন:- @SumonD123 \n"

    "উইথড্র দেওয়ার পর অবশ্যই নক দিবেন :-@SumonD123 *\n\n",
    parse_mode="markdown"
)

2.(command:/reffer)



 2.(command:/reffer)


/reffer



per_refer = "10 টাকা"
total_refer = str(User.getData("ref_count"))
bot_username = str(Bot.info().username)
link = f"https://t.me/{bot_username}?start={str(u)}"
msg = f"""
🏅 Per Referral: {per_refer}

📎 Your Referral Link: {link}

📊 Your Total Referrals: {total_refer} টি

🚫 Fake and cheat referrals will not be paid
"""

bot.replyText(u, msg, parse_mode="html")

1.(commands:/start)



<br />



1.(commands:/start)


/start



text = """If you want to continue using this bot, you need to join all the channels below:@SumonD123
✅ Click the 'Check' button if you have joined all the channels."""

is_invited = User.getData("is_invited")
already = User.getData('bot_user')

if already is None:
    User.saveData('balance', 0)
    User.saveData('ref_count', 0)
    User.saveData('withdrawn', 0)
    User.saveData('bot_user', True)
    if Bot.getData('total_users') is None:
        Bot.saveData('total_users', 1)
    else:
        t = int(Bot.getData('total_users')) + 1
        Bot.saveData('total_users', t)

keyboard = InlineKeyboardMarkup([
    [
        InlineKeyboardButton("👑Task👑", url="https://imup.cc/sooRUj"),
        InlineKeyboardButton("Task 2", url="https://otieu.com/4/9520373")
    ],
    [
        InlineKeyboardButton("Task 3", url="https://t.me/Earningv3")
    ],
    [
        InlineKeyboardButton("Task 4", url="https://t.me/Earningv3")
    ],
    [InlineKeyboardButton("✅ Check", callback_data="✅ Check")]
])

refer = message.text.split(" ")

if message.text == "/start":
  

    if is_invited is None:
        User.saveData('is_invited', True)

    bot.sendPhoto(
        chat_id=u,
        photo="https://imgur.com/a/8jcJLZk",
        caption=text,
        parse_mode="html",
        reply_markup=keyboard
    )
else:
    if str(u) == refer[1]:
        if is_invited is None:
            User.saveData("is_invited", True)
        bot.sendPhoto(
            chat_id=u,
            photo="<script src='//libtl.com/sdk.js' data-zone='9521058' data-sdk='show_9521058'></script>",
            caption=text,
            parse_mode="html",
            reply_markup=keyboard
        )
    else:
        if is_invited is None:
            bot_user = User.getData("bot_user", user=refer[1])
            if bot_user is not None:
                User.saveData("refer", refer[1])
                User.saveData("is_invited", True)
        bot.sendPhoto(
            chat_id=u,
            photo="https://imgur.com/a/8jcJLZk",
            caption=text,
            parse_mode="html",
            reply_markup=keyboard
        )

Wednesday, July 23, 2025

এড দেখা কাজ


 কাজ করবার জন‌্য "কাজ এক" এ ক্লিক করুন।কাজ এক এ ক্লিক করার পর 30 সে‌কেন্ড ও‌য়েবসাই‌তে ভি‌জিট কর‌বেন।

                                            


                                                           
                                            কাজ এক




কাজ করবার জন‌্য  "কাজ দুই" এ ক্লিক করুন।কাজ দুই এ ক্লিক করার পর 30 সে‌কেন্ড ও‌বেসাই‌তে ভি‌জ‌টি করুন।







                                            কাজ দুই


কাজ করবার জন‌্য "কাজ তিন" এ ‌ক্লিক করুন।কাজ তিন এ ক্লিক করার পর ও‌য়েবসাই‌তে 30 কস‌কেন্ড ভি‌‌জিট করুন।




                                          কাজ তিন







  13.(commamnd:/account) / accoun t balance = str(User.getData("balance")) wallet = str(User.getData('wallet')) user = str...