amanjha18v/AMAN_SHOPS_BOTPublic · Bot Template

AIAMAN SHOP STORE appears to be a Telegram automation bot. Commands include /*, /addbal, /addbal_all, /addbal_binance, /addbal_binance_approve, /addbal_binance_paid, /addbal_upi, /addcat_id. Observed in code: messaging, http, libs, keyboards, payments.

Utilityutility
ProfileTelegram
132 commands0 envUpdated 7h agoCreated Sep 4, 2026
Back to folder

commands/_download_updates.js

javascript · 59 lines

Raw
1/**#command2name: /download_updates3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12// =========================================================13// 📥 "Download Updates" button — premium update-channel section.14// Admin sets the redirect link via /set_update_link (see that file).15// =========================================================16 17try {18  var chatId = chat.chatid;19  var updateLink = Bot.getProperty("update_channel_link");20 21  var text =22    "<blockquote><tg-emoji emoji-id='6091571559233755994'>📥</tg-emoji> <b>DOWNLOAD FILES</b></blockquote>\n" +23    "━━━━━━━━━━━━━━━━━━━━━\n\n" +24    "<tg-emoji emoji-id='6093677128295914531'>🎉</tg-emoji> <i>Stay up to date with the latest files, features, and stock alerts!</i>\n\n" +25    (updateLink26      ? "<tg-emoji emoji-id='6080214566191505147'>🔗</tg-emoji> <b>Tap the button below to open your files.</b>"27      : "<tg-emoji emoji-id='6093854128193152827'>⚠️</tg-emoji> <i>Download link abhi admin ne set nahi kiya hai.</i>") +28    "\n━━━━━━━━━━━━━━━━━━━━━";29 30  var buttons = [];31  if (updateLink) {32    buttons.push([{ text: "Open Download Files", url: updateLink, style: "success", icon_custom_emoji_id: "6091571559233755994" }]);33  }34  buttons.push([{ text: "Back to Menu", callback_data: "/back", style: "primary", icon_custom_emoji_id: "5893163582194978381" }]);35 36  if (request && request.message) {37    try {38      Api.editMessageText({39        chat_id: String(chatId),40        message_id: Number(request.message.message_id),41        text: text,42        parse_mode: "HTML",43        reply_markup: JSON.stringify({ inline_keyboard: buttons })44      });45    } catch (e) {46      Api.sendMessage({ chat_id: chatId, text: text, parse_mode: "HTML", reply_markup: JSON.stringify({ inline_keyboard: buttons }) });47    }48  } else {49    Api.sendMessage({ chat_id: chatId, text: text, parse_mode: "HTML", reply_markup: JSON.stringify({ inline_keyboard: buttons }) });50  }51 52  var queryId = request ? (request.id || (request.callback_query && request.callback_query.id)) : null;53  if (queryId) {54    try { Api.answerCallbackQuery({ callback_query_id: String(queryId) }); } catch (e) {}55  }56 57} catch (err) {58  Bot.sendMessage("⚠️ Error: " + err.message);59}