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 8h agoCreated Sep 10, 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 = "6182067327";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: "default", 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}