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
102 commands1 envUpdated 29d agoCreated Aug 9, 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") || "8812621370";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}