mansuriamaan803/SANJEEVFFSTORE_botPublic · Bot Template
AIThis bot is a commerce platform for selling digital products, primarily focused on FreeFire accounts and related services. It provides admin tools for managing products, categories, stock, reseller roles, and a balance system for user payments. Users can browse products, apply coupons, and check their balance through an interactive interface with premium emojis and inline keyboards.
Commercecommercestoreproductsresellerbalancecoupon
102 commands0 envUpdated 12d agoCreated Aug 26, 2026
commands/_onQRExpire.js
javascript · 45 lines
1/**#command2name: /onQRExpire3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12try {13 var opts = (typeof options !== "undefined" && options) ? options : {};14 var userId = opts.userId || (typeof user !== "undefined" && user ? user.telegramid : null);15 var chatId = opts.chatId || (typeof chat !== "undefined" && chat ? chat.chatid : null);16 17 if (!userId || !chatId) { return; }18 19 var activeOrder = Bot.getProperty("qr_order_id_" + userId) || User.getProperty("qr_order_id_" + userId);20 var watchOrder = Bot.getProperty("qr_watch_order_" + userId) || User.getProperty("qr_watch_order_" + userId);21 var qrMsgId = Bot.getProperty("qr_msg_id_" + userId) || User.getProperty("qr_msg_id_" + userId);22 23 // ✅ Agar order already paid/cancelled ho chuka hai (activeOrder null ya watchOrder se alag), kuch mat karo24 if (!activeOrder || !watchOrder || String(activeOrder) !== String(watchOrder)) {25 return;26 }27 28 // ✅ UPDATED: ab koi "Order Expired" message nahi bheja jaata — QR bas29 // chupchaap vanish (delete) ho jaata hai jaise request kiya gaya tha.30 if (qrMsgId) {31 try { Api.deleteMessage({ chat_id: chatId, message_id: Number(qrMsgId) }); } catch (delErr) {}32 }33 34 // 🧹 Cleanup — order ab dead hai35 Bot.setProperty("qr_order_id_" + userId, null, "string");36 User.setProperty("qr_order_id_" + userId, null, "string");37 Bot.setProperty("qr_watch_order_" + userId, null, "string");38 User.setProperty("qr_watch_order_" + userId, null, "string");39 User.setProperty("pending_order_id", null);40 Bot.setProperty("verifying_lock_" + userId, false, "boolean");41 User.setProperty("verifying_lock_" + userId, false, "boolean");42 43} catch (err) {44 Bot.sendMessage("⚠️ Expiry Watcher Error: " + err.message);45}