kkapil9112/Aestheticmodes9_botPublic · Bot Template
AIA Telegram-based digital goods store bot with a full admin panel for managing products, plans, stock, keys, categories, resellers, balances, and coupons. It uses TeleBotHost APIs like Bot, Api, User, Libs.ResourcesLib, and HTTP to run a shop interface, handle admin-only commands, track users, and send inventory/balance summaries. The implementation appears focused on selling game-related accounts and keys such as FreeFire items, with customer-facing store, balance, coupon, and back-to-menu flows.
Commerceshopadmin-panelbalanceresellercouponsstock-management
102 commands1 envUpdated 29d agoCreated Aug 9, 2026
commands/_custom_stars_amount.js
javascript · 33 lines
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}