ayushyadav7970824760/goldensellingstore_botPublic · Bot Template
AIThis Telegram store bot lets customers browse digital products and plans, apply coupons, add funds via UPI, and receive purchased keys. It includes a full admin panel for managing products, reordering items, setting reseller prices, viewing and removing key stock, configuring UPI payment details and update links, and checking user balances. Co-admins and resellers are supported, and support tickets are forwarded to the admin.
Commercedigital_storeadmin_panelupi_paymentsresellercouponskey_stock
146 commands0 envUpdated 2d agoCreated Sep 5, 2026
commands/_set_dailygift_price.js
javascript · 50 lines
1/**#command2name: /set_dailygift_price3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12// =========================================================13// 🔧 ADMIN — Configure the /dailygift fixed reward amount14// Usage: /set_dailygift_price 515// =========================================================16 17try {18 var adminId = Bot.getProperty("owner_id") || "8477746023";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 currentAmount = Bot.getProperty("daily_gift_amount");27 if (currentAmount === undefined || currentAmount === null) currentAmount = "1 (default)";28 Bot.sendMessage(29 "⚠️ <b>Format:</b> <code>/set_dailygift_price 5</code>\n\n" +30 "<b>Current amount:</b> ₹<code>" + currentAmount + "</code>",31 { parse_mode: "HTML" }32 );33 return;34 }35 36 var newAmount = Number(params.trim());37 if (isNaN(newAmount) || newAmount <= 0) {38 Bot.sendMessage("❌ Invalid amount! Sirf positive number bhejein, jaise: <code>5</code>", { parse_mode: "HTML" });39 return;40 }41 42 Bot.setProperty("daily_gift_amount", newAmount, "number");43 Bot.sendMessage(44 "✅ <b>Daily Gift amount update ho gaya:</b> ₹" + newAmount.toFixed(2) + "\n\n<i>Ab har user ko is naye amount ka Daily Gift milega.</i>",45 { parse_mode: "HTML" }46 );47 48} catch (err) {49 Bot.sendMessage("⚠️ Error: " + err.message);50}