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/_broadcast.js
javascript · 26 lines
1/**#command2name: /broadcast3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12try {13 var adminId = Bot.getProperty("owner_id") || "8812621370";14 var isCoAdmin0 = Bot.getProperty("co_admin_" + String(chat.chatid));15 if (String(chat.chatid) !== adminId && !isCoAdmin0) {16 Bot.sendMessage("❌ Restricted command!");17 return;18 }19 20 // Admin ki state active karna21 User.setProperty("awaiting_broadcast_data", true, "boolean");22 Bot.sendMessage("📢 <b>BROADCAST SYSTEM ACTIVATED</b>\n\nAb aap jo bhi message (Text, Photo, Video, Voice, Animation) bhejenge, wo sabhi users ko chala jayega.\n\n<i>Kripya apna message ab send karein...</i>", { parse_mode: "HTML" });23 24} catch (err) {25 Bot.sendMessage("Error: " + err.message);26}