ayushyadav7970824760/goldensellingstore_botPublic · Bot Template
AIThis Telegram store bot lets customers browse digital products and plans, apply coupons, add funds via UPI, and receive purchased keys. It includes a full admin panel for managing products, reordering items, setting reseller prices, viewing and removing key stock, configuring UPI payment details and update links, and checking user balances. Co-admins and resellers are supported, and support tickets are forwarded to the admin.
Commercedigital_storeadmin_panelupi_paymentsresellercouponskey_stock
146 commands0 envUpdated 2d agoCreated Sep 5, 2026
commands/_normalprice.js
javascript · 52 lines
1/**#command2name: /normalprice3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12try {13 var adminId = "8477746023";14 if (String(chat.chatid) !== adminId) return;15 16 // Expected Format: pubg_mobile | 1_Day | 12017 if (!params) {18 Bot.sendMessage("❌ <b>Usage:</b>\n<code>/normalprice product_name | days | price</code>\n\n<i>Example: pubg_mobile | 1_Day | 120</i>", { parse_mode: "HTML" });19 return;20 }21 22 // Pipe '|' symbol ke hisab se text ko split karna23 var args = params.split("|");24 25 if (args.length < 3) {26 Bot.sendMessage("❌ <b>Incorrect Format!</b> Use Pipe symbol:\n<code>/setnormalprice product_name | days | price</code>", { parse_mode: "HTML" });27 return;28 }29 30 // Spaces remove karna trim() use karke31 var prodName = args[0].trim();32 var planName = args[1].trim();33 var price = args[2].trim();34 35 if (!prodName || !planName || !price || isNaN(price)) {36 Bot.sendMessage("❌ Invalid price number or structure. Double check inputs!", { parse_mode: "HTML" });37 return;38 }39 40 // Database standard configurations me save karna41 Bot.setProperty("price_normal_" + prodName + "_" + planName, Number(price), "float");42 43 var successText = "<blockquote><b><tg-emoji emoji-id='6064514463564831610'>💟</tg-emoji> NORMAL PRICE UPDATED</b>\n\n" +44 "• <b>Product:</b> <code>" + prodName + "</code>\n" +45 "• <b>Validity/Days:</b> <code>" + planName + "</code>\n" +46 "• <b>New Price:</b> <code>₹" + Number(price).toFixed(2) + "</code></blockquote>";47 48 Bot.sendMessage(successText, { parse_mode: "HTML" });49 50} catch (err) { 51 Bot.sendMessage("Error: " + err.message); 52}