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
102 commands0 envUpdated 12d agoCreated Aug 26, 2026
commands/_addreseller_info.js
javascript · 31 lines
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") || "8963001413";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}