kkapil9112/Aestheticmodes9_botPublic · Bot Template

AIA Telegram-based digital goods store bot with a full admin panel for managing products, plans, stock, keys, categories, resellers, balances, and coupons. It uses TeleBotHost APIs like Bot, Api, User, Libs.ResourcesLib, and HTTP to run a shop interface, handle admin-only commands, track users, and send inventory/balance summaries. The implementation appears focused on selling game-related accounts and keys such as FreeFire items, with customer-facing store, balance, coupon, and back-to-menu flows.

Commerceshopadmin-panelbalanceresellercouponsstock-management
ProfileTelegram
102 commands1 envUpdated 29d agoCreated Aug 9, 2026
Back to folder

commands/_toggle_reseller_system.js

javascript · 46 lines

Raw
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") || "8812621370";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}