pnxh2371/Ankit_mods_store_botPublic ยท Bot Template

ProfileTelegram

AI๐€ษดแด‹ษชแด› ๐Œแดแด…๊œฑ ๐’แด›แดส€แด‡ ๐Ÿ› appears to be a Telegram automation bot. Commands include /*, /addbal, /addbal_all, /addbal_binance, /addbal_binance_approve, /addbal_binance_paid, /addbal_upi, /addcat_id. Observed in code: messaging, http, libs, keyboards, payments.

Utilityutility
133 commands0 envUpdated 7h agoCreated Sep 10, 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", style: "default" }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}