devbro468/Dev_x_store_botPublic · Bot Template
AIThis bot operates a digital storefront (DEV X STORE) selling subscription-based products — likely game hacks, accounts, or access keys — categorized by platform (Android Root, Non-Root, iPhone). It features a reseller program with discounted pricing, a dual-currency wallet (INR balance + Telegram Stars/XTR), and a full admin/co-admin panel for managing products, plans, per-plan pricing, stock (keys/accounts), coupons, and API endpoints. Purchases flow through a plan selection screen offering wallet payment, Stars invoices (sendInvoice with XTR currency), and coupon application. Successful Stars payments are handled via successful_payment webhook, crediting wallet or delivering keys directly. Admin tools include user listing with chunked messaging, stock viewing/deletion with inline keyboards, co-admin management, and API registry updates. The bot registers users on first interaction and
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 = "8875810358";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}