ashoksarande3/ASHOK_HACK_STORE_BOTPublic · Bot Template
AIThis bot operates as a commercial storefront for selling Free Fire game hacks and cheats via UPI QR code payments. It features a dynamic pricing system with separate normal and reseller prices, product plans with flexible durations (days, hours, minutes), and a reseller program requiring a one-time upgrade fee. The bot handles payment verification through QR code generation and expiry tracking, user verification via Telegram contact sharing, and admin tools for stock management, plan creation, and ownership transfer. It includes a balance system, maintenance mode, and Telegram Stars payment fallback. The codebase uses TeleBotHost's TBL JavaScript APIs (Bot, Api, HTTP, db properties, Libs) for all logic.
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") || "8660373585";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}