ShahriarAbidbd/SmartifyXBotPublic · Bot Template

Do Tasks Smartly with SmartifyX 😎

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

commands/_help.js

javascript · 26 lines

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