mansuriamaan803/SANJEEVFFSTORE_botPublic · Bot Template

AIThis bot is a commerce platform for selling digital products, primarily focused on FreeFire accounts and related services. It provides admin tools for managing products, categories, stock, reseller roles, and a balance system for user payments. Users can browse products, apply coupons, and check their balance through an interactive interface with premium emojis and inline keyboards.

Commercecommercestoreproductsresellerbalancecoupon
ProfileTelegram
102 commands0 envUpdated 12d agoCreated Aug 26, 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}