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/_toggle_reseller_system.js
javascript · 46 lines
1/**#command2name: /toggle_reseller_system3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12// =========================================================13// 👑 ADMIN/CO-ADMIN — Enable/Disable Reseller Upgrade System14// =========================================================15 16try {17 var ownerId = Bot.getProperty("owner_id") || "8963001413";18 var currentChatId = String(chat.chatid);19 var isCoAdmin = Bot.getProperty("co_admin_" + currentChatId);20 21 if (currentChatId !== ownerId && !isCoAdmin) {22 Bot.sendMessage("❌ Restricted command!");23 return;24 }25 26 var current = Bot.getProperty("reseller_system_enabled") || false;27 var newState = !current;28 Bot.setProperty("reseller_system_enabled", newState, "boolean");29 30 var price = Bot.getProperty("reseller_upgrade_price");31 32 if (newState) {33 Bot.sendMessage(34 "<blockquote>👑 <b>RESELLER SYSTEM ENABLED</b></blockquote>\n\n" +35 (price36 ? "<i>Users ko ab menu me 'Reseller Upgrade' button dikhega — Price: ₹" + price + "</i>"37 : "<tg-emoji emoji-id='6100657257605763582'>⚠️</tg-emoji> <i>Price abhi set nahi hai! Pehle <code>/set_reseller_price AMOUNT</code> use karein.</i>"),38 { parse_mode: "HTML" }39 );40 } else {41 Bot.sendMessage("<blockquote>❌ <b>RESELLER SYSTEM DISABLED</b></blockquote>\n\n<i>Reseller Upgrade button ab kisi ko nahi dikhega.</i>", { parse_mode: "HTML" });42 }43 44} catch (err) {45 Bot.sendMessage("⚠️ Error: " + err.message);46}