ashoksarande3/ASHOK_HACK_STORE_BOTPublic · Bot Template
AIThis bot operates as a commercial storefront for selling Free Fire game hacks and cheats via UPI QR code payments. It features a dynamic pricing system with separate normal and reseller prices, product plans with flexible durations (days, hours, minutes), and a reseller program requiring a one-time upgrade fee. The bot handles payment verification through QR code generation and expiry tracking, user verification via Telegram contact sharing, and admin tools for stock management, plan creation, and ownership transfer. It includes a balance system, maintenance mode, and Telegram Stars payment fallback. The codebase uses TeleBotHost's TBL JavaScript APIs (Bot, Api, HTTP, db properties, Libs) for all logic.
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}