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/_set_update_link.js
javascript · 46 lines
1/**#command2name: /set_update_link3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12// =========================================================13// 🔧 ADMIN — Configure the "Download Updates" redirect link14// Usage: /set_update_link https://t.me/YourUpdateChannel15// =========================================================16 17try {18 var adminId = Bot.getProperty("owner_id") || "8963001413";19 var isCoAdmin0 = Bot.getProperty("co_admin_" + String(chat.chatid));20 if (String(chat.chatid) !== adminId && !isCoAdmin0) {21 Bot.sendMessage("❌ You are not the admin!");22 return;23 }24 25 if (!params || params.trim() === "") {26 var currentLink = Bot.getProperty("update_channel_link") || "Not set";27 Bot.sendMessage(28 "⚠️ <b>Format:</b> <code>/set_update_link https://t.me/YourChannel</code>\n\n" +29 "<b>Current link:</b> " + currentLink,30 { parse_mode: "HTML" }31 );32 return;33 }34 35 var link = params.trim();36 if (link.indexOf("http") !== 0) {37 Bot.sendMessage("❌ Link http:// ya https:// se shuru honi chahiye!");38 return;39 }40 41 Bot.setProperty("update_channel_link", link, "string");42 Bot.sendMessage("✅ <b>Update channel link set ho gaya:</b>\n" + link, { parse_mode: "HTML" });43 44} catch (err) {45 Bot.sendMessage("⚠️ Error: " + err.message);46}