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

Commercecommercedigital-goodsstars-paymentreseller-systemadmin-panelstock-management
ProfileTelegram
119 commands0 envUpdated 15d agoCreated Aug 23, 2026
Back to folder

commands/_addreseller_info.js

javascript · 31 lines

Raw
1/**#command2name: /addreseller_info3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12// =========================================================13// 👑 Admin panel button — shows usage instructions for /addreseller14// (a real Telegram command needs to be typed since it takes a User ID param)15// =========================================================16 17try {18  var ownerId = Bot.getProperty("owner_id") || "8875810358";19  var isCoAdmin = Bot.getProperty("co_admin_" + String(chat.chatid));20  if (String(chat.chatid) !== ownerId && !isCoAdmin) { return; }21 22  Bot.sendMessage(23    "<blockquote>👑 <b>DIRECT RESELLER (No Payment)</b></blockquote>\n\n" +24    "<b>Usage:</b> <code>/addreseller USERID</code>\n" +25    "<i>Example:</i> <code>/addreseller 123456789</code>\n\n" +26    "<i>User turant permanent Reseller ban jaayega, koi payment nahi lagegi. Unhe ek premium notification bhi mil jaayega.</i>",27    { parse_mode: "HTML" }28  );29} catch (err) {30  Bot.sendMessage("⚠️ Error: " + err.message);31}