ShahriarAbidbd/SmartifyXBotPublic · Bot Template

Do Tasks Smartly with SmartifyX 😎

Utilitydownloaderyoutubeinstagramfacebookspoilercontent-protection
ProfileTelegram
25 commands2 envUpdated 1d agoCreated Jul 28, 2026
Back to folder

commands/main_menu.js

javascript · 31 lines

Raw
1/**#command2name: main_menu3answer: 4keyboard: 5parse_mode: 6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12 13Api.editMessageText({14  chat_id: chat.id,15  message_id: request.message.message_id,16  text: "*What can your buddy do:*",17  reply_markup: {18    inline_keyboard: [19    [{text: "Downloader", callback_data: "menu_downloader"},{text: "Group Tools", callback_data: "menu_grouptools"}],20    [{text: "Extra", callback_data: "menu_extra"}],21      [{22        text: "Back",23        callback_data: "menu_home",24        style: "danger"25      }]26    ]27  },28  parse_mode: "markdown"29})30 31