ShahriarAbidbd/SmartifyXBotPublic · Bot Template

Do Tasks Smartly with SmartifyX 😎

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

commands/Admin Panel/other_commands.js

javascript · 30 lines

Raw
1/**#command2name: other_commands3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12if (!user.id == 7168234650) {13  return14}15 16Api.editMessageText({17  text: `<b>Here All Admin Commands:</b>\n\n<b>1. /update_dl_api: </b>For Updating Downloader API`,18  chat_id: chat.id,19  message_id: request.message.message_id,20  reply_markup: {21    inline_keyboard: [22      [{23        text: "🔙 Back",24        callback_data: "admin_panel_home",25        style: "danger"26      }]27    ]28  },29  parse_mode: "html"30})