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
ProfileTelegram
102 commands0 envUpdated 12d agoCreated Aug 26, 2026
Back to folder

commands/_onPressQR.js

javascript · 59 lines

Raw
1/**#command2name: /onPressQR3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12try {13  if (!content) {14    Bot.sendMessage("⚠️ <b>Gateway Error:</b> No response from server. Try again.", { parse_mode: "HTML" });15    return;16  }17 18  var res = (typeof content === "object") ? content : JSON.parse(content);19 20  if (res.status === "success" && res.data) {21    var orderId = res.data.order_id;22    var qrUrl = res.data.qr_url;23    var qrAmount = res.data.amount;24    var expireTime = res.data.expires_at_ist;25 26    User.setProperty("pending_order_id", orderId, "string");27 28    var caption = "🦆 <tg-emoji emoji-id='5893431652578758294'>💰</tg-emoji> <b>PAYMENT GATEWAY</b>\n" +29                  "━━━━━━━━━━━━━━━━━━━━━━\n" +30                  "🌈 <b>Amount: ₹" + qrAmount + "</b>\n" +31                  "📲 <i>Scan QR & Complete Payment</i>\n" +32                  "⏳ <b>Expire Time:</b> " + expireTime + "\n\n" +33                  "✅ <i>After Payment Click Verify Payment Button</i>\n" +34                  "━━━━━━━━━━━━━━━━━━━━━━\n" +35                  "🌐 <tg-emoji emoji-id='6192553546102085729'>🤖</tg-emoji> <i>Auto Verification System Powered</i>";36 37    Api.sendPhoto({38      photo: qrUrl,39      caption: caption,40      parse_mode: "HTML",41      reply_markup: JSON.stringify({42        inline_keyboard: [43          [44            { text: "Verify Payment", callback_data: "/check" }45          ],46          [47            { text: "Cancel / Back", callback_data: "/cancel_order" }48          ]49        ]50      })51    });52 53  } else {54    Bot.sendMessage("⚠️ <b>Failed to generate QR:</b> " + (res.message || "Unknown error"), { parse_mode: "HTML" });55  }56 57} catch (err) {58  Bot.sendMessage("⚠️ <b>Exception:</b> " + err.message, { parse_mode: "HTML" });59}