kkapil9112/Hguuuuuv45botPublic · Bot Template

AITelegram commerce bot for an admin-managed digital store: admins create categories, products, time-based plans, stock entries and license keys, and can grant reseller roles or adjust user balances. End users can view their balance, start a deposit flow with an inline amount keypad, apply coupon codes, and navigate back to the store menu. It uses Bot properties for product/stock/coupon data and Libs.ResourcesLib for per-user balances.

Commercecommerceshopreselleradmin-panelbalanceproduct-management
ProfileTelegram
102 commands0 envUpdated 29d agoCreated Aug 7, 2026
Back to folder

commands/_custom_stars_amount.js

javascript · 33 lines

Raw
1/**#command2name: /custom_stars_amount3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12// =========================================================13// ⭐ "Custom Amount" button — asks user to type a Stars amount14// (reply handled in _start.js MODULE 5)15// =========================================================16 17try {18  User.setProperty("awaiting_stars_amount", true, "boolean");19 20  var text = "<blockquote>⭐ <b>ENTER STARS AMOUNT</b></blockquote>\n\n<i>Kitne Stars deposit karne hain? Number type karke bhejein (e.g. 150)</i>";21 22  if (request && request.message && !request.message.photo) {23    Api.editMessageText({ chat_id: String(chat.chatid), message_id: Number(request.message.message_id), text: text, parse_mode: "HTML" });24  } else {25    Api.sendMessage({ chat_id: chat.chatid, text: text, parse_mode: "HTML" });26  }27 28  var queryId = request ? (request.id || (request.callback_query && request.callback_query.id)) : null;29  if (queryId) { try { Api.answerCallbackQuery({ callback_query_id: String(queryId) }); } catch (e) {} }30 31} catch (err) {32  Bot.sendMessage("⚠️ Error: " + err.message);33}