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/_cancel_ownership_transfer.js
javascript · 45 lines
1/**#command2name: /cancel_ownership_transfer3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12// =========================================================13// ❌ Cancel button on the Ownership Transfer confirmation screen14// ✅ BUG FIX: pehle ye button /cancel_plan_buy (galat context — "Purchase15// Cancelled" dikhata tha) use karta tha, aur pending transfer state clear16// bhi nahi hoti thi — matlab kabhi galti se "Confirm Transfer" phir dabta17// to purani/stale transfer execute ho sakti thi. Ab dono fix hain.18// =========================================================19 20try {21 User.setProperty("pending_ownership_transfer_to", null, "string");22 23 var text = "<blockquote>❌ <b>OWNERSHIP TRANSFER CANCELLED</b></blockquote>\n\n<i>Kuch bhi change nahi hua, aap abhi bhi Owner hain.</i>";24 25 if (request && request.message) {26 try {27 Api.editMessageText({28 chat_id: String(chat.chatid),29 message_id: Number(request.message.message_id),30 text: text,31 parse_mode: "HTML"32 });33 } catch (e) {34 Api.sendMessage({ chat_id: chat.chatid, text: text, parse_mode: "HTML" });35 }36 } else {37 Api.sendMessage({ chat_id: chat.chatid, text: text, parse_mode: "HTML" });38 }39 40 var queryId = request ? (request.id || (request.callback_query && request.callback_query.id)) : null;41 if (queryId) { try { Api.answerCallbackQuery({ callback_query_id: String(queryId) }); } catch (e) {} }42 43} catch (err) {44 Bot.sendMessage("⚠️ Error: " + err.message);45}