kkapil9112/Hguuuuuv45botPublic · Bot Template

AITelegram commerce bot for an admin-managed digital store: admins create categories, products, time-based plans, stock entries and license keys, and can grant reseller roles or adjust user balances. End users can view their balance, start a deposit flow with an inline amount keypad, apply coupon codes, and navigate back to the store menu. It uses Bot properties for product/stock/coupon data and Libs.ResourcesLib for per-user balances.

Commercecommerceshopreselleradmin-panelbalanceproduct-management
ProfileTelegram
102 commands0 envUpdated 29d agoCreated Aug 7, 2026
Back to folder

commands/_cancel_ownership_transfer.js

javascript · 45 lines

Raw
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}