kkapil9112/Hguuuuuv45botPublic · Bot Template

AITelegram commerce bot for an admin-managed digital store: admins create categories, products, time-based plans, stock entries and license keys, and can grant reseller roles or adjust user balances. End users can view their balance, start a deposit flow with an inline amount keypad, apply coupon codes, and navigate back to the store menu. It uses Bot properties for product/stock/coupon data and Libs.ResourcesLib for per-user balances.

Commercecommerceshopreselleradmin-panelbalanceproduct-management
ProfileTelegram
102 commands0 envUpdated 29d agoCreated Aug 7, 2026
Back to folder

commands/_onWebKeyError.js

javascript · 48 lines

Raw
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 = "8812621370";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}