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 7h agoCreated Sep 10, 2026
Back to folder

commands/_addreseller_info.js

javascript · 32 lines

Raw
1/**#command2name: /addreseller_info3answer: 4keyboard: 5parse_mode: markdown6aliases: 7allow_only_group: false8need_reply: false9is_web: 010#command**/11 12// =========================================================13// 👑 Admin panel button — shows usage instructions for /addreseller14// (a real Telegram command needs to be typed since it takes a User ID param)15// =========================================================16 17try {18  var ownerId = Bot.getProperty("owner_id") || "6182067327";19  var requesterId = String(user.telegramid);20  var isCoAdmin = Bot.getProperty("co_admin_" + requesterId);21  if (requesterId !== String(ownerId) && !isCoAdmin) { return; }22 23  Bot.sendMessage(24    "<blockquote>👑 <b>DIRECT RESELLER (No Payment)</b></blockquote>\n\n" +25    "<b>Usage:</b> <code>/addreseller USERID</code>\n" +26    "<i>Example:</i> <code>/addreseller 123456789</code>\n\n" +27    "<i>User turant permanent Reseller ban jaayega, koi payment nahi lagegi. Unhe ek premium notification bhi mil jaayega.</i>",28    { parse_mode: "HTML" }29  );30} catch (err) {31  Bot.sendMessage("⚠️ Error: " + err.message);32}