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/_onWebKeyError.js
javascript · 48 lines
1/**#command2name: /onWebKeyError3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12var dataOptions = options;13var chatId = dataOptions ? dataOptions.chat_id : chat.chatid;14var adminId = "8963001413";15 16var systemErrorText = "<blockquote>" +17 "❌ <b>ORDER FAILED</b>\n" +18 "━━━━━━━━━━━━━━━━━━━━━\n\n" +19 "⚠️ <b>Something went wrong. Please retry soon.</b>\n\n" +20 "⏳ <i>Wait some time, admin will stock refill soon.</i>\n" +21 "💰 <b>Status:</b> Your funds were not deducted.\n\n" +22 "━━━━━━━━━━━━━━━━━━━━━\n" +23 "🗣 <i>Feel free to check back in a few minutes!</i>" +24 "</blockquote>";25 26var errorInlineButtons = [[27 { text: "Back to Menu", callback_data: "/back", style: "danger", icon_custom_emoji_id: "5893163582194978381" }28]];29 30// ✅ FIX: sendMessage use kiya (photo message pe editMessageText fail hoti hai)31Api.sendMessage({32 chat_id: String(chatId),33 text: systemErrorText,34 parse_mode: "HTML",35 reply_markup: JSON.stringify({ inline_keyboard: errorInlineButtons })36});37 38if (dataOptions) {39 var adminAlertText = "⚠️ <b>API Reseller Error Alert!</b>\n" +40 "━━━━━━━━━━━━━━━━━━━━━\n" +41 "👤 <b>User:</b> " + (dataOptions.first_name || "Unknown") + " (<code>" + dataOptions.user_id + "</code>)\n" +42 "📦 <b>Product:</b> <code>" + dataOptions.prod_name + "</code>\n" +43 "⏳ <b>Plan:</b> <code>" + dataOptions.plan_days + " Days</code>\n" +44 "💵 <b>Price Amount:</b> ₹" + Number(dataOptions.price).toFixed(2) + "\n" +45 "🚨 <b>Reason:</b> External Website API is down or connection timed out.";46 47 Bot.sendMessageToChatWithId(adminId, adminAlertText);48}