deletedaccount/Filosofi_1botPublic · Bot Template

Make more optional and custom bot contact @Mr_WASI_Developer

Scamscamgmail_farmingpaid_tasksearningsreferral_bonusdaily_bonus
ProfileTelegram
33 commands0 envUpdated 6h agoCreated Aug 1, 2026
Back to folder

commands/_select_payout.js

javascript · 24 lines

Raw
1/**#command2name: /select_payout3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: true9is_web: 010#command**/11 12var method = params ? params.trim() : "bKash";13 14// ইউজারের নির্বাচিত মেথড সেভ রাখা15User.setProperty("selected_payout_method", method);16 17// পরবর্তী ইনপুট পাওয়ার জন্য ওয়াট অন অ্যান্সার সেট করা18Bot.runCommand("/process_withdraw_address");19 20Api.sendMessage({21  chat_id: chat.chatid,22  text: "📥 <b>Enter your " + method + " Account / Wallet Address:</b>\n\n<i>আপনার সম্পূর্ণ ব্যালেন্স অটো উইথড্র প্রসেস করা হবে।</i>",23  parse_mode: "HTML"24});