deletedaccount/Filosofi_1botPublic · Bot Template

Make more optional and custom bot contact @Mr_WASI_Developer

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

commands/⬅️ Back.js

javascript · 28 lines

Raw
1/**#command2name: ⬅️ Back3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12// ১. মেইন মেনুর ৬টি বাটন সেট করা13var mainMenuKeyboard = [14  ["➕ Register a new Gmail", "📋 My accounts"],15  ["💰 Balance", "👥 Referral"],16  ["⚙️ Settings", "💬 Help"]17];18 19// ২. ইউজারকে মেইন মেনু টেক্সট এবং কিবোর্ড পাঠানো20Api.sendMessage({21  chat_id: chat.chatid,22  text: "Main Menu \n\nনিচের মেনু থেকে আপনার পছন্দমত অপশন সিলেক্ট করুন:",23  parse_mode: "HTML",24  reply_markup: {25    keyboard: mainMenuKeyboard,26    resize_keyboard: true27  }28});